Powershell cheat sheet: Difference between revisions

From Coolscript
Jump to navigation Jump to search
(Created page with " $allscopes = @() $cnt++ $allscopes += ,($cnt,"Val1-1","Val1-2","Val1-3") $cnt++ $allscopes += ,($cnt,"Val2-1","Val2-2","Val2-3") $cnt++ $allscopes += ,($cnt,"Val3-1"...")
 
No edit summary
Line 1: Line 1:
=Execution Policy=
get-ExecutionPolicy
set-ExecutionPolicy RemoteSigned
set-ExecutionPolicy unrestricted
=Install AZ Module=
Install-Module -Name AZ -AllowClobber -Scope CurrentUser
Import-Module  Az -Verbose
  $allscopes = @()  
  $allscopes = @()  
  $cnt++
  $cnt++

Revision as of 09:15, 19 April 2021


Execution Policy

get-ExecutionPolicy
set-ExecutionPolicy RemoteSigned
set-ExecutionPolicy unrestricted


Install AZ Module

Install-Module -Name AZ -AllowClobber -Scope CurrentUser
Import-Module  Az -Verbose


$allscopes = @() 
$cnt++
$allscopes += ,($cnt,"Val1-1","Val1-2","Val1-3") 
$cnt++
$allscopes += ,($cnt,"Val2-1","Val2-2","Val2-3") 
$cnt++
$allscopes += ,($cnt,"Val3-1","Val3-3","Val3-3") 


foreach ($row in @($allscopes)) {
 write-output "->$($row[0]) <--> $($row[1]) <--> $($row[2])  <--> $($row[3]) <-"
}


#Modify cell
for ( $index = 0; $index -lt $allscopes.count; $index++ )  {
   $allscopes[$index][0] = "X"
}
write-output "------------"
foreach ($row in @($allscopes)) {
 write-output "->$($row[0]) <--> $($row[1]) <--> $($row[2])  <--> $($row[3]) <-"
}