Tag: Python

Powershell, Python

PowerShell Guide to Python: Modules 

Importing Modules Importing Single Module PowerShell provides an Import-module cmdlet to import modules in the current session. # syntax: Import-Module <name of module> Import-Module ActiveDirectory Whereas, Python has a keyword import to load modules into the current Python Session, but the import statement does not…

Powershell

Managing disks with PowerShell 

After presenting a storage disk on a Windows machine, it is very easy to initialize raw disks and bring them online using PowerShell. With just a few PowerShell cmdlets, you can also create partitions and volumes so they’re accessible through the file system.   Read more at…