remove .gitignore files

This commit is contained in:
Fran Jurmanović
2024-07-16 22:50:40 +02:00
parent 6e91c02de7
commit 6e638bfa84
3 changed files with 0 additions and 15 deletions

0
acc.db
View File

View File

View File

@@ -1,15 +0,0 @@
param (
[string]$Action,
[string]$ServiceName
)
if ($Action -eq "start") {
sc.exe start $ServiceName
} elseif ($Action -eq "stop") {
sc.exe stop $ServiceName
} elseif ($Action -eq "restart") {
sc.exe stop $ServiceName
sc.exe start $ServiceName
} else {
Write-Error "Invalid action specified. Use 'start', 'stop', or 'restart'."
}