diff --git a/README.md b/README.md
new file mode 100644
index 0000000..73574d7
--- /dev/null
+++ b/README.md
@@ -0,0 +1,48 @@
+# 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:
+> **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)