Skip to content

Commit

Permalink
TooManyProjectsException ;-(
Browse files Browse the repository at this point in the history
  • Loading branch information
T-mp committed Jan 21, 2024
1 parent 2ad491c commit 1c1fb80
Show file tree
Hide file tree
Showing 15 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions CodeGraphData/config.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CodeGraphData/config.json-backup0

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CodeGraphData/config.json-backup1

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CodeGraphData/config.json-backup2

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CodeGraphData/config.json-backup3

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CodeGraphData/config.json-backup4

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CodeGraphData/config.json-backup5

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CodeGraphData/config.json-backup6

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CodeGraphData/config.json-backup7

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CodeGraphData/config.json-backup8

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CodeGraphData/config.json-backup9

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#Status
Nur gelegentliche, sporadische Entwicklung. (TooManyProjectsException ;-( )

# WebRaid
## Idee
Die billigen (zum Teil kostenlosen) Angebote sind naturgemäß "unzuverlässig" (im Verhältnis zu teuer bezahlten) und auch in der Kapazität begrenzt.
Expand Down
9 changes: 9 additions & 0 deletions WebRaid.Main.WinService/Install.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
//rem Remove-Service -Name WebRaidMain

$acl = Get-Acl "C:\WebRaid"
$aclRuleArgs = "DESKTOP-70NDVG4\WebRaidServiceUser", "Read,Write,ReadAndExecute", "ContainerInherit,ObjectInherit", "None", "Allow"
$accessRule = New-Object System.Security.AccessControl.FileSystemAccessRule($aclRuleArgs)
$acl.SetAccessRule($accessRule)
$acl | Set-Acl "C:\WebRaid\WebRaid.Main.exe"

New-Service -Name WebRaidMain -BinaryPathName "C:\WebRaid\WebRaid.Main.exe" -Credential "DESKTOP-70NDVG4\WebRaidServiceUser" -Description "WebRaid.Service" -DisplayName "WebRaid.Service" -StartupType Automatic
1 change: 1 addition & 0 deletions WebRaid.Main.WinService/Start.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
net start WebRaidService
1 change: 1 addition & 0 deletions WebRaid.Main.WinService/Stop.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
net stop WebRaidService

0 comments on commit 1c1fb80

Please sign in to comment.