Posts

Showing posts with the label Tool Box

Tool Box - Version 2.1.1.3

Image
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...

Tool Box - Version 2.0.0.2

Image
Some time a go I had put together a series of bat files that where designed to launch and log different tools and scripts that you may have to help you work on a PC but it wasn't very customisable and it was very large, This is my current revision of that tool using PowerShell and a singe bat file to run it. I will update this as I add more to it. Download full Application from HERE Tool Box - V 2.0.0.1 #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 -Computer...