diff --git a/SickChill-Windows-Installer.md b/SickChill-Windows-Installer.md index 8332906..b753d28 100644 --- a/SickChill-Windows-Installer.md +++ b/SickChill-Windows-Installer.md @@ -22,6 +22,20 @@ sc restart SickChill If you are unable to get those setup correctly, you can always disable the service and start SickChill manually. SickChill will then run as the user that is logged in to Windows. Alternatively, you can also install SickChill [manually](https://github.com/SickChill/SickChill/wiki/SickChill-Windows-Installer#manual-installation-guides-for-windows) +### Enable Linked Connections +If you are having issues with networked drives, you likely need to [enable linked connections](https://learn.microsoft.com/en-us/troubleshoot/windows-client/networking/mapped-drives-not-available-from-elevated-command): + +#### With Registry tool: +``` +reg add "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableLinkedConnections" /t REG_DWORD /d 0x00000001 /f +``` +OR + +#### With PowerShell: +``` +New-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System' -Name EnableLinkedConnections -Value 1 -PropertyType 'DWord' +``` + --- ## Installing SickChill on Windows @@ -33,14 +47,15 @@ Browse to the folder/location where you have placed the installer file and execu (You might get a warning from `users account control` that the program is `Unknown`. Just ignore the warning, and click on `OK`.) -- -![1](https://user-images.githubusercontent.com/11801385/273109083-6e0a34e3-14b0-413a-b0ed-77a85af0e31f.PNG) + +![1](images/winsc3.PNG) You will be greeted by the welcome screen. Click on `Next >` to proceed with the installation. -- -![2](https://user-images.githubusercontent.com/11801385/273109115-3d5e8c6c-2633-4d1d-80b2-ff0ab055f9b0.PNG) +![2](images/winsc4.PNG) The next window lets you select the destination folder where you want SickChill to be installed. the default is `C:\SickChill` Use `Browse...` if you would like to change that location. Or enter the destination manually in the text field. @@ -48,7 +63,7 @@ Click on `Next >` to proceed with the installation. -- -![3](https://user-images.githubusercontent.com/11801385/273109122-92b0ebf3-63aa-4e36-bd74-6d01f57ae574.PNG) +![3](images/winsc5.PNG) The next window will ask if you would like a shortcut to be created in your start menu. If not than check the check-box `Don't create a Start Menu folder` @@ -56,14 +71,14 @@ Click on `Next >` to proceed with the installation. -- -![4](https://user-images.githubusercontent.com/11801385/273109131-cb595a4f-0831-4d9f-9bd6-77d20a577750.PNG) +![4](images/winsc6.PNG) The next window will let you set the port on which SickChill will run. The default is `8081` and it's advised not to change this, unless you have a good reason for it. Click on `Next >` to proceed with the installation. -- -![6](https://user-images.githubusercontent.com/11801385/273109144-8d0f2c47-aeb0-4ac2-aeca-d6a03ae33a93.PNG) +![6](images/winsc7.PNG) The next window will ask if you would like to create a shortcut for SickChill on your desktop. For ease, it's recommended to create a shortcut on the desktop. But you can also decide to save the URL as a bookmark/favorite in your browser later. @@ -71,7 +86,7 @@ Click on `Next >` to proceed with the installation. -- -![7](https://user-images.githubusercontent.com/11801385/273109157-6f960494-e97f-4172-979f-1e4cb3bdaacb.PNG) +![7](images/winsc8.PNG) The next window shows you an overview of the settings you have selected and the dependencies that will be installed together with SickChill. (Those dependencies are needed to run and update SickChill on your Windows machine.) @@ -79,26 +94,26 @@ Click on `Install` to proceed with the installation. -- -![8](https://user-images.githubusercontent.com/11801385/273109166-806fb2f0-e484-4750-9b19-b109c446b55b.PNG) +![8](images/winsc9.PNG) The next window will start downloading the necessary files that are going to be used to install SickChill. -- -![9](https://user-images.githubusercontent.com/11801385/273109180-4a8b9447-85de-4795-be56-25825cb2974e.PNG) +![9](images/winsc10.PNG) The next window will show you the installation of the downloaded files, this can take a moment depending on your machine. -- -![10](https://user-images.githubusercontent.com/11801385/273109197-79a41fc3-d759-4787-8569-783598f6b889.PNG) +![10](images/winsc11.PNG) When the installation is complete you will get the `Finish` screen. Simply click on `Finish` to complete the installation. Congratulations, you have successfully installed SickChill.! :+1: -- -![11](https://user-images.githubusercontent.com/11801385/273109209-d3c253e8-2534-4a78-a261-88f8d6bfb107.PNG) +![11](images/winsc12.PNG) Now you can access SickChill by opening your favorite browser and go to http://localhost:8081 to open SickChill's Web-interface. diff --git a/images/winsc10.PNG b/images/winsc10.PNG new file mode 100644 index 0000000..878e899 Binary files /dev/null and b/images/winsc10.PNG differ diff --git a/images/winsc11.PNG b/images/winsc11.PNG new file mode 100644 index 0000000..9e4a35e Binary files /dev/null and b/images/winsc11.PNG differ diff --git a/images/winsc12.PNG b/images/winsc12.PNG new file mode 100644 index 0000000..9a6520e Binary files /dev/null and b/images/winsc12.PNG differ diff --git a/images/winsc3.PNG b/images/winsc3.PNG new file mode 100644 index 0000000..cd9d6c2 Binary files /dev/null and b/images/winsc3.PNG differ diff --git a/images/winsc4.PNG b/images/winsc4.PNG new file mode 100644 index 0000000..e83e4ac Binary files /dev/null and b/images/winsc4.PNG differ diff --git a/images/winsc5.PNG b/images/winsc5.PNG new file mode 100644 index 0000000..639820a Binary files /dev/null and b/images/winsc5.PNG differ diff --git a/images/winsc6.PNG b/images/winsc6.PNG new file mode 100644 index 0000000..7542d0f Binary files /dev/null and b/images/winsc6.PNG differ diff --git a/images/winsc7.PNG b/images/winsc7.PNG new file mode 100644 index 0000000..8d2fafd Binary files /dev/null and b/images/winsc7.PNG differ diff --git a/images/winsc8.PNG b/images/winsc8.PNG new file mode 100644 index 0000000..2ac3719 Binary files /dev/null and b/images/winsc8.PNG differ diff --git a/images/winsc9.PNG b/images/winsc9.PNG new file mode 100644 index 0000000..4564ab0 Binary files /dev/null and b/images/winsc9.PNG differ