Table of Contents
Table of Contents |
---|
Technologies
Microsoft Windows Server
...
Microsoft Windows Server 2003 (R2)
Setup IAS Radius Server for 802.1x Auth
...
Microsoft Windows Server 2008 (R2)
Windows Server 2008 R2 Print Logging
- Login to the server
- From Server Manager, expand Diagnostics and Event Viewer
- Expand Applications and Services Logs
- Expand the Microsoft folder, expand the Windows folder
- Expand the PrintServices folder
- Right-click on the Operational Log, and click Enable Log
Disabling UAC via Group Policy
...
note: In 2008 you will have to start procexp.exe with "Administrator rights" in order to kill processes.
How to cleanup the winsxs folder
The winsxs folder in c:\windows can be really big, the only way to cleanup is using the microsoft command line tools :
Windows Server 2003 : VSP1CLEAN.exe
Windows Server 2008 : COMPCLN.exe
Windows 7 and Server 2008 R2 : DISM.exe
I will explain the last one here. Start you’re command prompt As Administrator.
Usage:
Code Block | ||||
---|---|---|---|---|
| ||||
dism /online /cleanup-image /spsuperseded |
You can also run these commands :
...
Code Block | ||||
---|---|---|---|---|
| ||||
Takeown /f %windir%\winsxs\ManifestCache\*
Icacls %windir%\winsxs\ManifestCache\* /GRANT administrators:F
Del /q %windir%\winsxs\ManifestCache\* |
Notes
How to remove ghost nics on vmware machines that have been P2Ved
...