-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# <img src="https://www.msp360.com/new/img/logos/cbl/CloudBerry-Lab-is-now-MSP360-light-bg-117-40.png" alt="drawing" width="117"/> MSP360 (CloudBerry) PowerShell module | ||
|
||
First step before using our Powershell Module is installing it in your system. Below you can find instructions for doing so. | ||
|
||
> **_NOTE:_** You can find the current version of your Powershell by running this command:<br /> | ||
> **Get-Host | Select version** | ||
## For Powershell version 3.0 - 5.1 and above: | ||
|
||
Open PS console with Administrator account and run this command. | ||
```powershell | ||
iex (New-Object System.Net.WebClient).DownloadString('https://git.io/JUSAA') | ||
``` | ||
|
||
## For Powershell version 2.0 | ||
|
||
For Powershell with version below we suggest [updating](https://docs.microsoft.com/en-us/powershell/scripting/install/installing-windows-powershell?view=powershell-6) to the most recent version. | ||
|
||
## Additional steps | ||
|
||
|
||
At some step you also may be required to allow remotesigned execution policy by running | ||
|
||
```powershell | ||
Set-ExecutionPolicy RemoteSigned | ||
``` | ||
|
||
Use the following command to load module. | ||
|
||
```powershell | ||
Import-Module -Name msp360 | ||
``` | ||
|
||
## Examples | ||
|
||
Here is an example of a couple popular requests to start working with our PowerShell module: | ||
|
||
```powershell | ||
Get-Command -Module msp360 | ||
``` | ||
|
||
![](https://kb.msp360.com/content/images/6db1cd2e-5de3-4bd1-b3b2-1aa69be0d0a9.PNG) | ||
|
||
```powershell | ||
Get-Help Start-MBSBackupPlan | ||
``` | ||
|
||
![](https://kb.msp360.com/content/images/e8d1e88d-146e-41fe-b3a7-68d6deeb0270.png) |