Skip to main content

Posts

Showing posts from September, 2017

Script to Compress WinSXS

Compress WinSXS: A Script to compress WinSXS folder resided in Windows directory. if you are concern about the growing size of WinSXS folder taking so much of space then you can use this powershell script to reduce the size by compressing WinSXS folder data. This script is very usefull in the case when you need to compress WinSXS folder in large number of Servers/Desktops environment. #——————————————– # Script to compress WinSXS folder try { $winDir = “$($env:windir)” $winSxSDir = “$winDir\WinSxS” $aclPath = “$winDir\WinSxS.acl” $serviceMSI = “msiserver” $serviceTI = “TrustedInstaller” Stop-Service $serviceMSI Stop-Service $serviceTI Set-Service -Name $serviceMSI -StartupType Disabled Set-Service -Name $serviceTI -StartupType Disabled icacls.exe $winSxSDir /save $aclPath /t takeown /f $winSxSDir /r icacls $winSxSDir /grant “$($env:USERDOMAIN)\$($env:USERNAME)”:”(F)” /t compact /s:$winSxSDir /c /a /i * icacls $winSxSDir /setowner “NT SERVICE\TrustedInstall

Script to get the Uptime of multiple workstation and servers

Guys, Here is another script with which you will get the uptime of multiple workstation or server in just seconds. once you download the folder just copy list of server names in the notepad  named "ListOfServers"and run the batch script named "checkuptime" with elevated privileges once you run this script the result will be stored in the folder named Log. Please find the script below. https://www.dropbox.com/s/d0hon0rsek7x1sn/Uptime.rar?dl=0 Thanks for reading this. Enjoy Maddi........

Create Multiple Folders Through Script

Guys,Today I am going to share you a script which will help you create multiple folders. Just add the names of the folder which needs to be created in the FILE.TXT file. Copy Both the Text file and script in the folder where you want to create new folders and then run the script and see the Magic. All the folders will be created in seconds. Below is the link to the script. https://www.dropbox.com/s/fv01s5ipemgh00e/Folder%20creation%20script.rar?dl=0 Thanks for reading  more scripts will be coming up.

System Volume Information is taking more space

On one of the servers (running Windows Server 2012 R2) I faced a problem with the lack of free space on a system drive. I have cleared all resource-consuming locations ( WinSxS , TEMP directories, user profiles,  outdated updates , etc.), but it didn’t have any evident effect. At last, I have found that a large part of a system disk has been occupied by  System Volume Information  folder. Let’s consider why we need System Volume Information folder in Windows systems, what is stored in it and how to clean up it. Note . The instructions given in this article are applicable to other Windows versions as well:   Windows 10, Windows 7, Windows 8, Windows 2008 R2, Windows 2012 / 2012 R2. System Volume Information  folder is in the root of each disk. System data related to system recovery and Shadow Copy Service are stored in it. By default it is hidden and only the SYSTEM has access to it. Even the administrator cannot open it and look through the contents of the folder. To view the co