Discord and Slack are two different application but they both use the same idea. They allow people to talk in real…
powershell
-
-
Today i would like you show another way of using Group-object cmdlet. Let’s say you want to obtain powered off, powered…
-
Today i wanted to add another section to my health check scripts, i wanted to get all unresolved, not acknowledged alerts…
-
This time i wanted to create a report on information which is put in the custom fields for my vms. You…
-
So the 2012 Scripting Game have finished. Final results were presented. As for me i finished on 24th place. There were…
-
I wanted to get a list of vms that are using specific vlan so i wrote this one: [sourcecode language=”powershell”] foreach($vm…
-
So what if you would like to get a report on filesystem disk usage on esxi box. For now afaik there…
-
http://blogs.technet.com/b/heyscriptingguy/ https://2012sg.poshcode.org/ If you like challenges 😉 Register and have fun 😉 Powershell scripting games 2012 have started !
-
I will have this 1 post for all useful commands. Rebooting remote windows box (gwmi win32_operatingsystem -Computername XXXXXXX -cred (get-credential)).Win32Shutdown(6) Please…
-
Get-Datacenter -Name “xxx Datacenter” | Get-Datastore | Select-Object @{Label=”DataStore Name”;Expression={$_.Name}},@{Label=”GB Left”;Expression={[Math]::Round($_.FreeSpaceMB/1024,2)}},@{Label=”Capacity GB”;Expression={[Math]::Round($_.CapacityMB/1024,2)}},@{Label=”Free %”;Expression={[Math]::Round($_.FreeSpaceMB/$_.CapacityMB,3)*100}},@{Label=”New VMs”;Expression={[Math]::Floor(“{0:0.00;’0′}” -f (($_.FreeSpaceMB – 30000)/20480)) }} | ConvertTo-Html…