Difference between revisions of "Windows Powershell"

From rbachwiki
Jump to navigation Jump to search
(Replaced content with "=POWERSHELL FILEBASED OPERATIONS= = Category=")
Tag: Replaced
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Script that create a folder based on today's date, then copy the contents of one folder to another==
=[[POWERSHELL FILEBASED OPERATIONS]]=
<pre>
$datecurrent = get-date -Format MM-dd-yyyy
$apath = "C:\Users\John\Desktop\leaves"
$btest = "C:\Users\john\Desktop\leaves\pdf-sliced"
$ctest = "C:\Users\john\Desktop\leaves\atest"


#create directory
if ( -not (Test-Path "$ctest\$datecurrent" -PathType Container) ){
New-Item -ItemType directory -Path "$ctest\$datecurrent"
}else{
"Directory already exist! Maybe you ran the program twice"
Read-Host -Prompt "Hit Enter to Exit"
break
}


if( Test-Path "$ctest\$datecurrent" -PathType Container ){
#open folder
ii "$ctest\$datecurrent"
#copy files from source to destination
Copy-Item -Path $btest\* -Destination "$ctest\$datecurrent" -Verbose
}else{
"There Was an error - Contact Robert"
}
Read-Host -Prompt "Hit Enter to Exit"
</pre>
'''save with .ps1 extension'''
== CD  to a specific directory ==
set-location 'g:\box\All Flds\web\amazon\test'
==Eject Drive *Not tested==
<pre>
$vol = get-wmiobject -Class Win32_Volume | where{$_.drivetype -eq '2'} 
$Eject =  New-Object -comObject Shell.Application
$Eject.NameSpace(17).ParseName($vol.driveletter).InvokeVerb(“Eject”)
</pre>
=[[Windows| Category]]=
=[[Windows| Category]]=

Latest revision as of 16:38, 13 October 2021