Tool Box - Version 2.1.1.3
I have updated my Tool Box Script with a few visual changes and a new tab for RSAT Tools Changes: 1. Added some color to the main window 2. Added a Shutdown and Restart button to the Main window 3. Added a Tab for RSAT tools, The tab will only show if RSAT tools are installed on the computer you are running the Tool Box from. Download from HERE #Setes the time stamp variable for the log $Time = Get-Date #Sets a variable to be used later for the computer info $Computer = $env:computername #Gets ths system drive $SysDrive = $env:SystemDrive #Gets the OS and OS architecture $GetOS = Get-WmiObject -class Win32_OperatingSystem -computername $Computer foreach($sProperty in $GetOS) { $OS = $sProperty.Caption $OSArchitecture = $sProperty.OSArchitecture } #Gets memory information $Getmemoryslot = Get-WmiObject Win32_PhysicalMemoryArray -ComputerName $computer $Getmemory = Get-WMIObject Win32_PhysicalMemory -ComputerName $computer $Getmemorymeasure = Get-WMIObject Win32_PhysicalMe...