text
stringlengths
0
834k
219705,f30d44b6af665d3dcac2c2c9b97d86b30bb61d5f,106,bat,Batchfile,examples/board-match/line-match.bat,hoomanik/phaser3-rex-notes,19c15641d0a7e738a3c49c3c9a82b717c31ae915,['MIT'],,,,examples/board-match/line-match.bat,hoomanik/phaser3-rex-notes,19c15641d0a7e738a3c49c3c9a82b717c31ae915,['MIT'],,,,examples/board-match/line-match.bat,hoomanik/phaser3-rex-notes,19c15641d0a7e738a3c49c3c9a82b717c31ae915,['MIT'],,,,"@echo off
set main=./examples/board-match/line-match.js
cd ..
cd ..
webpack --config webpack.config.js",21.2,46,0.7075471698
219706,f30d667196c31eb816fa6df0945a7f84d80aea4a,168,cmd,Batchfile,build.cmd,jvilalta/quartznet,01a09caa3dede0ab045a341a33688c64b20eb6b4,['Apache-2.0'],1.0,2016-09-27T13:55:50.000Z,2016-09-27T13:55:50.000Z,build.cmd,jvilalta/quartznet,01a09caa3dede0ab045a341a33688c64b20eb6b4,['Apache-2.0'],,,,build.cmd,jvilalta/quartznet,01a09caa3dede0ab045a341a33688c64b20eb6b4,['Apache-2.0'],,,,"@echo off
cls
""tools\NuGet\NuGet.exe"" ""Install"" ""FAKE"" ""-Version"" ""4.53.0"" ""-OutputDirectory"" ""packages"" ""-ExcludeVersion""
""packages\FAKE\tools\Fake.exe"" build.fsx %*
",28.0,108,0.7083333333
219707,f30d85bbf9be13224663dfa1d60fac6c7afbe2a3,99,bat,Batchfile,deploy2.bat,microsoft/Tradable-Digital-Assets-Solution-Accelerator,f9beed504f2028deb1da0c5323996351994cc5c8,['MIT'],2.0,2022-01-09T11:42:29.000Z,2022-02-25T09:19:36.000Z,deploy2.bat,microsoft/Tradable-Digital-Assets-Solution-Accelerator,f9beed504f2028deb1da0c5323996351994cc5c8,['MIT'],1.0,2022-02-21T13:29:10.000Z,2022-02-21T13:29:10.000Z,deploy2.bat,microsoft/Tradable-Digital-Assets-Solution-Accelerator,f9beed504f2028deb1da0c5323996351994cc5c8,['MIT'],2.0,2022-02-25T09:19:16.000Z,2022-03-07T11:17:19.000Z,Powershell.exe -executionpolicy remotesigned -File .\01_Application_Deployment\DeployResources2.ps1,99.0,99,0.8888888889
219708,f30df98beafa51da5ec72de46f34720da52600d0,24279,cmd,Batchfile,MAS_1.2/Separate-Files-Version/Activators/Online_KMS_Activation/Renewal_Setup.cmd,swipswaps/Microsoft-Activation-Scripts,af621ad8abd1bfb26fcc04636a2e5af3353707ae,['ADSL'],7.0,2020-12-11T12:06:04.000Z,2021-12-26T17:27:07.000Z,MAS_1.2/Separate-Files-Version/Activators/Online_KMS_Activation/Renewal_Setup.cmd,swipswaps/Microsoft-Activation-Scripts,af621ad8abd1bfb26fcc04636a2e5af3353707ae,['ADSL'],,,,MAS_1.2/Separate-Files-Version/Activators/Online_KMS_Activation/Renewal_Setup.cmd,swipswaps/Microsoft-Activation-Scripts,af621ad8abd1bfb26fcc04636a2e5af3353707ae,['ADSL'],2.0,2021-07-12T06:27:32.000Z,2022-01-09T00:41:59.000Z,"@setlocal DisableDelayedExpansion
@echo off
:: =======================================================================================================
::
:: This script is a part of 'Microsoft Activation Scripts' project.
::
:: Homepages-
:: NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
:: GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
::
:: Maintained by @WindowsAddict
::
:: =======================================================================================================
::========================================================================================================================================
cls
set Unattended=
set _args=
set _elev=
set RenTask=
set RenActTask=
set DeskMenu=
set _SkipWinAct=
set _end=
set ""_arg1=%~1""
if not defined _arg1 goto :NoProgArgs
set ""_args=%~1""
set ""_arg2=%~2""
set ""_arg3=%~3""
if defined _arg2 set ""_args=%~1 %~2""
if defined _arg3 set ""_args=%~1 %~2 %~3""
for %%A in (%_args%) do (
if /i ""%%A""==""-el"" set _elev=1
if /i ""%%A""==""/swa"" set _SkipWinAct=1
if /i ""%%A""==""/rt"" set RenTask=1&set Unattended=1
if /i ""%%A""==""/rat"" set RenActTask=1&set Unattended=1
if /i ""%%A""==""/dcm"" set DeskMenu=1&set Unattended=1)
:NoProgArgs
for /f ""tokens=6 delims=[]. "" %%G in ('ver') do set winbuild=%%G
set ""_psc=powershell -nop -ep bypass -c""
set ""nul=1>nul 2>nul""
set ""EchoRed=%_psc% write-host -back Black -fore Red""
set ""EchoGreen=%_psc% write-host -back Black -fore Green""
set ""EchoYellow=%_psc% write-host -back Black -fore DarkYellow""
set ""ELine=echo: & %EchoRed% ==== ERROR ==== &echo:""
::========================================================================================================================================
for %%i in (powershell.exe) do if ""%%~$path:i""=="""" (
echo: &echo ==== ERROR ==== &echo:
echo Powershell is not installed in the system.
echo Aborting...
set _end=1
goto Done
)
::========================================================================================================================================
if %winbuild% LSS 7600 (
%ELine%
echo Unsupported OS version Detected.
echo Project is supported only for Windows 7/8/8.1/10 and their Server equivalent.
set _end=1
goto Done
)
::========================================================================================================================================
:: Elevate script as admin and pass arguments and preventing loop
:: Thanks to @hearywarlot [ https://forums.mydigitallife.net/threads/.74332/ ] for the VBS method.