Answers for "script powershell example"

2

ps1 powershell script

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
Posted by: Guest on May-24-2020
0

Powershell Symple

1..300 | foreach {Write-Host " " -BackgroundColor (Get-Random 'Black', 'DarkBlue','DarkGreen','DarkCyan', 'DarkRed','DarkMagenta','DarkYellow','Gray','DarkGray','Blue','Green','Cyan','Red','Magenta','Yellow','White') -NoNewline}

#Revised this code after got help on facebook.
1..300 | foreach {Write-Host " " -BackgroundColor ([ConsoleColor].GetEnumValues() | Get-Random) -NoNewline
Posted by: Guest on September-11-2021

Code answers related to "script powershell example"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language