Skip to content

Commit

Permalink
Create README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cblalexv authored Oct 2, 2020
1 parent addda6b commit 76e912a
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions README.md
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)

0 comments on commit 76e912a

Please sign in to comment.