This repository has been archived by the owner on Nov 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- The program can now be closed (Verification is still mandatory) - Verification time decreased to 5 minutes (was 8 minutes) - Attempting to cancel the verification process will disable the Close and/or Cancel button - Processes are killed as intended now at application startup - Improved the code - Added a script to keep fake-slui running
- Loading branch information
1 parent
fa4ffed
commit ccb1401
Showing
9 changed files
with
127 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
@echo off | ||
:variables | ||
:: Change this to where you keep KeepAlive.ps1 | ||
set KeepAlive="C:\PATH\TO\KeepAlive.ps1" | ||
goto init | ||
:init | ||
net session >nul 2>&1 | ||
if %errorLevel% == 0 (goto execute) else (goto error) | ||
goto init | ||
:execute | ||
powershell Set-ExecutionPolicy Unrestricted | ||
powershell -windowstyle hidden %KeepAlive% | ||
exit | ||
:error | ||
color 4F | ||
echo. | ||
echo ERROR: This script needs elevated privileges! | ||
timeout /t -1 | ||
exit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
while(1){ | ||
|
||
$procname = Get-Process slui -ErrorAction SilentlyContinue | ||
if($procname){} | ||
|
||
else{ | ||
Start-Process -FilePath "C:\PATH\TO\EXECUTABLE\slui.exe" | ||
} | ||
|
||
Remove-Variable procname | ||
Start-Sleep 120 #Check if slui is open every this amount of time (seconds) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
Module Var | ||
Public Property imDebugging As Boolean = False | ||
Public Property productKey As String | ||
End Module | ||
End Module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters