diff --git a/Episode-Status.md b/Episode-Status.md index f832cea..71a5f2d 100644 --- a/Episode-Status.md +++ b/Episode-Status.md @@ -37,6 +37,7 @@ There are many different Status Types that are used for at what state/stage the - is included in the Total Episode Count - **Snatched** + - is wanted, has been found, and sent to the download client - has a zero count toward the Individual Episode Count - is included in the Total Episode Count diff --git a/Installation-&-Configuration-Guides.md b/Installation-&-Configuration-Guides.md index 1c5fb2f..92a0f17 100644 --- a/Installation-&-Configuration-Guides.md +++ b/Installation-&-Configuration-Guides.md @@ -19,7 +19,6 @@ New to SickChill? Then the below guides will help you with the setup, and discov - [Synology](https://github.com/SickChill/SickChill/wiki/Synology) - [QNAP](https://github.com/OneCDOnly/sherpa) - ###### Setup NZBtoMedia for SickChill - https://github.com/SickChill/SickChill/wiki/NZBtoMedia diff --git a/SickChill-Windows-Installer.md b/SickChill-Windows-Installer.md index b753d28..20305ba 100644 --- a/SickChill-Windows-Installer.md +++ b/SickChill-Windows-Installer.md @@ -23,15 +23,19 @@ 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' ```