From a command line or from Run dialog box (Windows Key + R) enter this command
wuauclt /ShowWU
Showing posts with label Windows 8. Show all posts
Showing posts with label Windows 8. Show all posts
Wednesday, January 30, 2013
Tuesday, January 29, 2013
How to change your MTU size under Vista or Windows 7
- Find your MTU
netsh interface ipv4 show subinterfaces
- Find out what it should be
The host name should be a site you can not reach, -f denotes that icmp packets should not be fragmented, the -l 1472 sets the size of the packet (1472 = Ethernet Default MTU – Packet Header, where the Ethernet Default MTU is 1500 and the Packet Header is 28 bytes).
If the packet can’t be sent because it would need to be fragmented you will get something similar to this:
Packet needs to be fragmented but DF set.
Keep trying lowering packet sizes by 10 (i.e. -l 1460, 1450, 1440, etc.) until you get a successful ping request. Raise your packet sizes by one until you get a "Packet needs to be fragmented but DF set.". The last successful value plus 28 will be your MTU value.
In my case a packet size of 1464 succeeds but 1463 fails, so 1464 + 28 = 1492.
- Set your MTU
For more information you can read the following link.
Thursday, January 3, 2013
How to install .NET Framework 3.5 in Windows 8
In Windows 8 or Windows Server 2012, open a Command Prompt window with administrative credentials (that is, choose Run as administrator).
To install the .NET Framework 3.5 from installation media located in the D:\sources\sxs directory, use the following command:
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:d:\sources\sxs
Use /All to enable all parent features of the .NET Framework 3.5.
Use /LimitAccess to prevent DISM from contacting Windows Update.
Use /Source to specify the location of the files needed to restore the feature.
To install the .NET Framework 3.5 from installation media located in the D:\sources\sxs directory, use the following command:
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:d:\sources\sxs
Use /All to enable all parent features of the .NET Framework 3.5.
Use /LimitAccess to prevent DISM from contacting Windows Update.
Use /Source to specify the location of the files needed to restore the feature.
Subscribe to:
Posts (Atom)