We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename the file ungoogled-chromium_* to bin,And create a new user_data directory.
ungoogled-chromium_*
bin
user_data
Create a new run.bat script, type in the following content.
run.bat
:: by runningcheese @echo off @ECHO OFF&(PUSHD "%~DP0")&(REG QUERY "HKU\S-1-5-19">NUL 2>&1)||( powershell -Command "Start-Process '%~sdpnx0' -Verb RunAs"&&EXIT) echo set WshShell = WScript.CreateObject("WScript.Shell")>tmp.vbs echo set oShellLink = WshShell.CreateShortcut("%~dp0" ^& "\chrome.lnk")>>tmp.vbs echo oShellLink.TargetPath ="%~dp0\bin\chrome.exe">>tmp.vbs echo oShellLink.Arguments ="--user-data-dir=%~dp0\user_data --allow-outdated-plugins --disable-logging --disable-breakpad">>tmp.vbs echo oShellLink.WindowStyle ="1">>tmp.vbs echo oShellLink.IconLocation = "%~dp0\bin\chrome.exe">>tmp.vbs echo oShellLink.Description = "">>tmp.vbs echo oShellLink.WorkingDirectory = "%~dp0">>tmp.vbs echo oShellLink.Save>>tmp.vbs call tmp.vbs del /f /q tmp.vbs
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Rename the file
ungoogled-chromium_*
tobin
,And create a newuser_data
directory.Create a new
run.bat
script, type in the following content.The text was updated successfully, but these errors were encountered: