powershell
Articles tagged with powershell.
Sort by
List environment variables in PowerShell
more_vert
visibility
37
thumb_up
0
access_time
2 years ago
Environment variables are commonly used in many frameworks or programs.
Calculate time difference in PowerShell
more_vert
visibility
74
thumb_up
0
access_time
2 years ago
This code snippet shows how to calculate time differences.
visibility
492
thumb_up
0
access_time
3 years ago
The following is a PowerShell code snippet to start multiple VMs through vmplayer.exe: # Navigate to the folder where vmplayer.exe file exists cd "D:\Program Files (x86)\VM Player" # Start the VMs by using vmplayer.exe <# vmplayer.exe command help vmplayer.exe [OPTION…] [–] ...
visibility
15855
thumb_up
1
access_time
3 years ago
PowerShell provides a number of cmdlets to retrieve current date time and to create time span object. $current = Get-Date $end= Get-Date $diff= New-TimeSpan -Start $current -End $end Write-Output "Time difference is: $diff" $current = [System.DateTime]::Now $end= ...