You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updated the readme for installation and usage of 0.4.0.
The default startup type at installation is now Automatic and the option has been changed to 'ManualStartup'.
Fixed the descriptions for the parameters for the install script.
Moo.FuckScreenConnect is a tool to make the privacy screen for ScreenConnect Client (and Remote Utilities) semi-transparent, allowing you to see what a scammer is doing while they think their actions are secret.\
4
-
Support for remote desktop software (e.g., AnyDesk) that does not use a standard window for its privacy screen is outside the scope of this project, but may be supported in a separate project in the future.
4
+
Support for remote desktop software (e.g., AnyDesk) that does not use a standard window for its privacy screen is outside the scope of this project.
5
5
6
6
This is a port of the original formerly private program written in C# to Rust, made simpler and easier to understand and maintain. Now with support for Remote Utilities!
7
7
8
-
Feature requests are welcome, but please file an issue here on GitHub rather than making a direct request elsewhere.
8
+
Feature requests are welcome, but please file an issue here on GitHub rather than making a direct request elsewhere.
9
+
10
+
## Installation
11
+
The easiest way to install or uninstall FSC is to download the [latest release](https://github.com/RobotsOnDrugs/Moo.FuckScreenConnect-rs/releases) and use the included PowerShell script `install.ps1`. This script must be run as an administrator from the command line. You may need to set PowerShell's execution policy to allow the script to run.
12
+
```powershell
13
+
Set-ExecutionPolicy -ExecutionPolicy Bypass
14
+
```
15
+
or, for only the script:
16
+
```powershell
17
+
Unblock-File '.\install.ps1'
18
+
```
19
+
If updating from version 0.3.x or earlier, it is highly advised to uninstall using the installation script from that release before installing version 0.4.
20
+
21
+
### install.ps1 Optional Parameters
22
+
-`ApplicationPath [custom\path\here]` - Specifies an alternate installation directory. Note: when uninstalling, this parameter must be set to the directory specified during installation.
23
+
-`Type [Install|Uninstall]` - Specifies whether to install or uninstall FSC. By default, it will install.
24
+
-`ServiceName [Name]` - Specifies a custom name for the service which will appear in places where services are displayed such as Task Manager or the Services application. When uninstalling, this parameter must be set to the name specified during installation.
25
+
-`ManualStartup` - Specifies whether to start the service automatically at boot or only when started manually. If set, it will not start automatically at boot and must be started manually.
26
+
-`ShowDebugMessages` - Shows extra information that is intended for aiding development. The messages that are displayed are subject to change.
27
+
28
+
## Usage
29
+
FSC runs as a Windows service. Once installed, it will run in the background and requires no additional interaction if set to automatic startup. It can be stopped and started in the same manner as any other Windows service.
Copy file name to clipboardExpand all lines: install.ps1
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -4,24 +4,24 @@
4
4
.DESCRIPTION
5
5
Installs FuckScreenConnect either from the current directory or a specified path.
6
6
If there is an error, regardless of any options specified, the script will immediately halt and any issues must then be resolved manually.
7
-
.PARAMETERApplicationPath
8
-
Optional; the current directory is used by default. Specifies the directory containing fsc_service.exe and fsc_core.exe.
7
+
.PARAMETERApplicationPath [Path to custom directory]
8
+
Optional; defaults to the Program Files directory. If set, it will install to the custom directory specified.
9
9
.PARAMETERType [Install | Uninstall]
10
10
Optional; defaults to Install. Installs or uninstalls the service.
11
-
.PARAMETERServiceName
12
-
Optional; "FSC Service" by default. Specifies the name of the FSC service that will appear in e.g., the Services application or Task Manager.
13
-
.PARAMETERAutomaticStartup
14
-
Optional; false by default. If set, the service will be set to automatically start at boot. If unset, the service will not and can be started manually.
11
+
.PARAMETERServiceName [Name]
12
+
Optional; defaults to "FSC Service". Specifies the name of the FSC service that will appear in e.g., the Services application or Task Manager.
13
+
.PARAMETERManualStartup
14
+
Optional. If set, the service must be started or stopped manually. Otherwise, the service will start automatically at boot.
15
15
.PARAMETERShowDebugMessages
16
-
Optional; unset by default. If set, debug messages are shown. Primarily meant for troubleshooting and developer use, and the messages shown are subject to change.
16
+
Optional. If set, debug messages are shown. Primarily meant for troubleshooting and developer use, and the messages shown are subject to change.
if (!$start_status.Equals([System.ServiceProcess.ServiceControllerStatus]::Running)) { Stop-ScriptWithError-ErrorMessage "Could not start service $service_name." }
0 commit comments