Added Files
This commit is contained in:
@@ -0,0 +1,90 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Set NTP-Server and Time
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:SetNtpServerAndTime
|
||||
TITLE SetNtpServerAndTime
|
||||
SET Module=SetNtpServerAndTime
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
%SystemRoot%\System32\net.exe stop w32time >nul 2>&1
|
||||
%SystemRoot%\System32\w32tm.exe /config /syncfromflags:manual /manualpeerlist:"0.de.pool.ntp.org 1.de.pool.ntp.org 2.de.pool.ntp.org 3.de.pool.ntp.org" >nul 2>&1
|
||||
%SystemRoot%\System32\net.exe start w32time >nul 2>&1
|
||||
%SystemRoot%\System32\sc.exe config w32time start= auto >nul 2>&1
|
||||
%SystemRoot%\System32\w32tm.exe /resync /force >nul 2>&1
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Set Powerplan to High Performance
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:SetPowerPlanToHighPerformance
|
||||
TITLE SetPowerPlanToHighPerformance
|
||||
SET Module=SetPowerPlanToHighPerformance
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Set Power Plan to High Performance
|
||||
ECHO %TIME:~0,8% Set Power Plan to High Performance >>%logfile_setup%
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "c:\scripts\PowerShell\Set-PowerPlanToHighPerformance.ps1" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Disable the Network Discovery Prompt Window
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:DisableTheNetworkDiscoveryPromptWindow
|
||||
TITLE DisableTheNetworkDiscoveryPromptWindow
|
||||
SET Module=DisableTheNetworkDiscoveryPromptWindow
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Disable the network discovery prompt window
|
||||
ECHO %TIME:~0,8% Disable the network discovery prompt window >>%logfile_setup%
|
||||
"%SystemRoot%\System32\reg.exe" ADD "HKLM\System\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: NoBackgroundImageAtTheLogonPage
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:NoBackgroundImageAtTheLogonPage
|
||||
TITLE NoBackgroundImageAtTheLogonPage
|
||||
SET Module=NoBackgroundImageAtTheLogonPage
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO No Background Image at the Logon Page
|
||||
ECHO %TIME:~0,8% No Background Image at the Logon Page >>%logfile_setup%
|
||||
"%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System" /v DisableLogonBackgroundImage /t REG_DWORD /d 1 /f >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Increase Taskbar Transparency Level
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:IncreaseTaskbarTransparencyLevel
|
||||
TITLE IncreaseTaskbarTransparencyLevel
|
||||
SET Module=IncreaseTaskbarTransparencyLevel
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Increase Taskbar Transparency Level
|
||||
ECHO %TIME:~0,8% Increase Taskbar Transparency Level >>%logfile_setup%
|
||||
"%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v UseOLEDTaskbarTransparency /t REG_DWORD /d 1 /f >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,94 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Quick Shutdown
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:QuickShutdown
|
||||
TITLE QuickShutdown
|
||||
SET Module=QuickShutdown
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Quick Shutdown
|
||||
ECHO %TIME:~0,8% Quick Shutdown >>%logfile_setup%
|
||||
"%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control" /v WaitToKillServiceTimeout /t REG_SZ /d 1000 /f >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Set wait to kill service timeout to 1000
|
||||
ECHO %TIME:~0,8% Set wait to kill service timeout to 1000 >>%logfile_setup%
|
||||
"%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control" /v WaitToKillServiceTimeout /t REG_SZ /d 1000 /f >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Disable First Time Sign In Animation
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:DisableFirstTimeSignInAnimation
|
||||
TITLE DisableFirstTimeSignInAnimation
|
||||
SET Module=DisableFirstTimeSignInAnimation
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Disable First Time Sign-in Animation
|
||||
ECHO %TIME:~0,8% Disable First Time Sign-in Animation >>%logfile_setup%
|
||||
"%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v EnableFirstLogonAnimation /t REG_DWORD /d 0 /f >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Disable The Lock Screen
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:DisableTheLockScreen
|
||||
TITLE DisableTheLockScreen
|
||||
SET Module=DisableTheLockScreen
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Disable the Lock Screen
|
||||
ECHO %TIME:~0,8% Disable the Lock Screen >>%logfile_setup%
|
||||
"%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization" /v NoLockScreen /t REG_DWORD /d 1 /f >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Turn Off Fast Startup
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:TurnOffFastStartup
|
||||
TITLE TurnOffFastStartup
|
||||
SET Module=TurnOffFastStartup
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Turn off Fast Startup
|
||||
ECHO %TIME:~0,8% Turn off Fast Startup >>%logfile_setup%
|
||||
"%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /v HiberbootEnabled /t REG_DWORD /d 0 /f >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Disable Privacy Settings Experience At Sign In
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:DisablePrivacySettingsExperienceAtSignIn
|
||||
TITLE DisablePrivacySettingsExperienceAtSignIn
|
||||
SET Module=DisablePrivacySettingsExperienceAtSignIn
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Disable Privacy Settings Experience at Sign-in
|
||||
ECHO %TIME:~0,8% Disable Privacy Settings Experience at Sign-in >>%logfile_setup%
|
||||
"%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OOBE" /v DisablePrivacyExperience /t REG_DWORD /d 1 /f >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Disable Telemetry
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:DisableTelemetry
|
||||
TITLE DisableTelemetry
|
||||
SET Module=DisableTelemetry
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Disable Telemetry
|
||||
ECHO %TIME:~0,8% Disable Telemetry >>%logfile_setup%
|
||||
"%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v AllowTelemetry /t REG_DWORD /d 0 /f >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Allow Microsoft Updates For Other Products
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:AllowMicrosoftUpdatesForOtherProducts
|
||||
TITLE AllowMicrosoftUpdatesForOtherProducts
|
||||
SET Module=AllowMicrosoftUpdatesForOtherProducts
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Allow Microsoft Updates for other products
|
||||
ECHO %TIME:~0,8% Allow Microsoft Updates for other products >>%logfile_setup%
|
||||
"%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\WindowsUpdate\Services\7971f918-a847-4430-9279-4a52d1efe18d" /v RegisteredWithAU /t REG_DWORD /d 1 /f >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Unnecessarily Writing On SSD Will Shorten The Lifetime
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:UnnecessarilyWritingOnSSDWillShortenTheLifetime
|
||||
TITLE UnnecessarilyWritingOnSSDWillShortenTheLifetime
|
||||
SET Module=UnnecessarilyWritingOnSSDWillShortenTheLifetime
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Unnecessarily writing on SSD will shorten the lifetime
|
||||
ECHO %TIME:~0,8% Unnecessarily writing on SSD will shorten the lifetime >>%logfile_setup%
|
||||
"%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem" /v NtfsDisableLastAccessUpdate /t REG_DWORD /d 80000001 /f >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Disable Auto Run For All Volumes
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:DisableAutoRunForAllVolumes
|
||||
TITLE DisableAutoRunForAllVolumes
|
||||
SET Module=DisableAutoRunForAllVolumes
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Disable Auto Run for all volumes
|
||||
ECHO %TIME:~0,8% Disable Auto Run for all volumes >>%logfile_setup%
|
||||
"%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Explorer" /v NoAutoplayfornonVolume /t REG_DWORD /d 1 /f >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Display Detailed Information In Device Manager
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:DisplayDetailedInformationInDeviceManager
|
||||
TITLE DisplayDetailedInformationInDeviceManager
|
||||
SET Module=DisplayDetailedInformationInDeviceManager
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Display detailed information in Device Manager
|
||||
ECHO %TIME:~0,8% Display detailed information in Device Manager >>%logfile_setup%
|
||||
"%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v "DEVMGR_SHOW_DETAILS" /t REG_DWORD /d 1 /f >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Disable Edge First Run
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:DisableEdgeFirstRun
|
||||
TITLE DisableEdgeFirstRun
|
||||
SET Module=DisableEdgeFirstRun
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Disable Edge First Run
|
||||
ECHO %TIME:~0,8% Disable Edge First Run >>%logfile_setup%
|
||||
"%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\MicrosoftEdge\Main" /v PreventFirstRunPage /t REG_DWORD /d 1 /reg:64 /f >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Disable Edge Prelaunch
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:DisableEdgePrelaunch
|
||||
TITLE DisableEdgePrelaunch
|
||||
SET Module=DisableEdgePrelaunch
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Disable Edge Prelaunch
|
||||
ECHO %TIME:~0,8% Disable Edge Prelaunch >>%logfile_setup%
|
||||
"%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\MicrosoftEdge\Main" /v AllowPrelaunch /t REG_DWORD /d 0 /reg:64 /f >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Disable Edge Tab Pre loading
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:DisableEdgeTabPreloading
|
||||
TITLE DisableEdgeTabPreloading
|
||||
SET Module=DisableEdgeTabPreloading
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Disable Edge Tab Preloading
|
||||
ECHO %TIME:~0,8% Disable Edge Tab Preloading >>%logfile_setup%
|
||||
"%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\MicrosoftEdge\TabPreloader" /v AllowTabPreloading /t REG_DWORD /d 0 /reg:64 /f >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Enable Remote PowerShell
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:EnableRemotePowerShell
|
||||
TITLE EnableRemotePowerShell
|
||||
SET Module=EnableRemotePowerShell
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Enable Remote PowerShell
|
||||
ECHO %TIME:~0,8% Enable Remote PowerShell >>%logfile_setup%
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "Enable-PSRemoting -SkipNetworkProfileCheck -Force -Confirm:$false -ErrorAction Continue" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Create PowerShell Profiles
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:CreatePowerShellProfiles
|
||||
TITLE CreatePowerShellProfiles
|
||||
SET Module=CreatePowerShellProfiles
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Create plain PowerShell Profiles
|
||||
ECHO %TIME:~0,8% Create plain PowerShell Profiles >>%logfile_setup%
|
||||
start /MIN /WAIT "CleanupStockApps" %SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "C:\scripts\PowerShell\New-PowerShellProfiles.ps1" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,91 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Installing Chocolatey
|
||||
:: Version 1.0.2
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:InstallingChocolatey
|
||||
TITLE InstallingChocolatey
|
||||
SET Module=InstallingChocolatey
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Installing Chocolatey
|
||||
ECHO %TIME:~0,8% Installing Chocolatey >>%logfile_setup%
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "(C:\scripts\PowerShell\Install-Choco.ps1 -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
:: 1.0.1: Fix Typo
|
||||
:: 1.0.2: Moved the installation to a dedicated PowerShell Script
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,94 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Add NuGet Package Source
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:AddNuGetPackageSource
|
||||
TITLE AddNuGetPackageSource
|
||||
SET Module=AddNuGetPackageSource
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Add NuGet Package Source
|
||||
ECHO %TIME:~0,8% Add NuGet Package Source >>%logfile_setup%
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "(Install-PackageProvider -Name NuGet -Force -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Register Nuget Repository
|
||||
ECHO %TIME:~0,8% Register Nuget Repository >>%logfile_setup%
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "(Register-PackageSource -Name Nuget -Location 'http://www.nuget.org/api/v2' -ProviderName Nuget -Trusted -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,94 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Configures Windows Remote Management
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:ConfiguresWindowsRemoteManagement
|
||||
TITLE ConfiguresWindowsRemoteManagement
|
||||
SET Module=ConfiguresWindowsRemoteManagement
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Configures Windows Remote Management
|
||||
ECHO %TIME:~0,8% Configures Windows Remote Management >>%logfile_setup%
|
||||
start /MIN /WAIT "Configures Windows Remote Management (WinRM)" cmd /c winrm quickconfig -force -quiet >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Allow Basic authentication Windows Remote Management
|
||||
ECHO %TIME:~0,8% Allow Basic authentication Windows Remote Management >>%logfile_setup%
|
||||
start /MIN /WAIT "Allow Basic authentication Windows Remote Management (WinRM)" cmd /c winrm set winrm/config/client/auth @{Basic="true"} >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,94 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Set Power Config Profile
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:SetPowerConfigProfile
|
||||
TITLE SetPowerConfigProfile
|
||||
SET Module=SetPowerConfigProfile
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Set Power Config profile
|
||||
ECHO %TIME:~0,8% Set Power Config profile >>%logfile_setup%
|
||||
start /MIN /WAIT "Set Power Config profile" %SystemRoot%\system32\powercfg.exe -setactive 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Change monitor timeout
|
||||
ECHO %TIME:~0,8% Change monitor timeout >>%logfile_setup%
|
||||
start /MIN /WAIT "Change monitor timeout" %SystemRoot%\system32\powercfg.exe -Change -monitor-timeout-ac 10 >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: CleanupWindows10StockApps
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:CleanupWindows10StockApps
|
||||
TITLE CleanupWindows10StockApps
|
||||
SET Module=CleanupWindows10StockApps
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Cleanup Windows 10 Stock Apps
|
||||
ECHO %TIME:~0,8% Cleanup Windows 10 Stock Apps >>%logfile_setup%
|
||||
start /MIN /WAIT "CleanupStockApps" %SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "C:\scripts\PowerShell\Cleanup_StockApps.ps1" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Bootstrap The Windows 10 Client System
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:BootstrapTheWindows10System
|
||||
TITLE BootstrapTheWindows10System
|
||||
SET Module=BootstrapTheWindows10System
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Bootstrap the Windows 10 System
|
||||
ECHO %TIME:~0,8% Bootstrap the Windows 10 System >>%logfile_setup%
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "(C:\scripts\PowerShell\Invoke-BootstrapSystem.ps1 -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Allow Ping And Remote Desktop
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:AllowPingAndRemoteDesktop
|
||||
TITLE AllowPingAndRemoteDesktop
|
||||
SET Module=AllowPingAndRemoteDesktop
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Allow Ping and RemoteDesktop
|
||||
ECHO %TIME:~0,8% Allow Ping and RemoteDesktop >>%logfile_setup%
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "(C:\scripts\PowerShell\Set-AllowPingAndRemoteDesktop.ps1 -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Save System Image Info
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:SaveSystemImageInfo
|
||||
TITLE SaveSystemImageInfo
|
||||
SET Module=SaveSystemImageInfo
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Save System Image Info
|
||||
ECHO %TIME:~0,8% Save System Image Info >>%logfile_setup%
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "(c:\install\SetImageInfo.ps1 -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,142 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Change Some Attributes
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:ChangeSomeAttributes
|
||||
TITLE ChangeSomeAttributes
|
||||
SET Module=ChangeSomeAttributes
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO %TIME:~0,8% ATTRIB +A -R -S -H c:\scripts >>%logfile_setup%
|
||||
ATTRIB +A -R -S -H c:\scripts >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO %TIME:~0,8% ATTRIB +A -R -S -H c:\scripts\PowerShell >>%logfile_setup%
|
||||
ATTRIB +A -R -S -H c:\scripts\PowerShell >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO %TIME:~0,8% ATTRIB +A -R -S -H c:\scripts\Batch >>%logfile_setup%
|
||||
ATTRIB +A -R -S -H c:\scripts\Batch >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO %TIME:~0,8% ATTRIB +A -R -S -H c:\Install /S /D >>%logfile_setup%
|
||||
ATTRIB +A -R -S -H c:\Install /S /D >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO %TIME:~0,8% ATTRIB +A -R -S -H c:\Temp /S /D >>%logfile_setup%
|
||||
ATTRIB +A -R -S -H c:\Temp /S /D >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO %TIME:~0,8% ATTRIB +A -R -S -H c:\scripts\powershell\*.* /S /D >>%logfile_setup%
|
||||
ATTRIB +A -R -S -H c:\scripts\powershell\*.* /S /D >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO %TIME:~0,8% ATTRIB +A -R -S -H c:\scripts\Batch\*.* /S /D >>%logfile_setup%
|
||||
ATTRIB +A -R -S -H c:\scripts\Batch\*.* /S /D >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO %TIME:~0,8% ATTRIB +A -R -S -H c:\tools\*.* /S /D >>%logfile_setup%
|
||||
ATTRIB +A -R -S -H c:\tools\*.* /S /D >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO %TIME:~0,8% ATTRIB +A -R -S -H c:\Install\*.* /S /D >>%logfile_setup%
|
||||
ATTRIB +A -R -S -H c:\Install\*.* /S /D >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO %TIME:~0,8% ATTRIB +A -R -S -H c:\Temp\*.* /S /D >>%logfile_setup%
|
||||
ATTRIB +A -R -S -H c:\Temp\*.* /S /D >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Bootstrap The All User Profile
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:BootstrapTheAllUserProfile
|
||||
TITLE BootstrapTheAllUserProfile
|
||||
SET Module=BootstrapTheAllUserProfile
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Bootstrap the All User Profile
|
||||
ECHO %TIME:~0,8% Bootstrap the All User Profile >>%logfile_setup% 2>&1
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "(C:\scripts\PowerShell\Invoke-BootstrapAllUserProfile.ps1 -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Update All Microsoft Store Apps
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:UpdateAllMicrosoftStoreApps
|
||||
TITLE UpdateAllMicrosoftStoreApps
|
||||
SET Module=UpdateAllMicrosoftStoreApps
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Update all Microsoft Store Apps
|
||||
ECHO %TIME:~0,8% Update all Microsoft Store Apps >>%logfile_setup% 2>&1
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "(C:\scripts\PowerShell\Update-AllMicrosoftStoreApps.ps1 -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,97 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Install The Microsoft Office Suite
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:InstallTheMicrosoftOfficeSuite
|
||||
TITLE InstallTheMicrosoftOfficeSuite
|
||||
SET Module=InstallTheMicrosoftOfficeSuite
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
PUSHD c:\install\Office\ >nul 2>&1
|
||||
|
||||
ECHO Install our default office deployment
|
||||
ECHO %TIME:~0,8% Install our default office deployment >>%logfile_setup% 2>&1
|
||||
start /MIN /WAIT "Install our default office deployment" C:\install\Office\setup.exe /configure c:\install\Office\Configuration.xml >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
POPD >nul 2>&1
|
||||
|
||||
ECHO Clean up after the office setup is done
|
||||
ECHO %TIME:~0,8% Clean up after the office setup is done >>%logfile_setup% 2>&1
|
||||
if exist c:\install\Office\ rd /s /q c:\install\Office\ >>%logfile_setup% 2>&1
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Install Some PowerShell Modules
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:InstallSomePowerShellModules
|
||||
TITLE InstallSomePowerShellModules
|
||||
SET Module=InstallSomePowerShellModules
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Install some PowerShell Modules
|
||||
ECHO %TIME:~0,8% Install some PowerShell Modules >>%logfile_setup% 2>&1
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "(C:\scripts\PowerShell\Install-PowerShellModules_required.ps1 -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Update Help Files For All Installed PowerShell Modules
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:UpdateHelpFilesForAllInstalledPowerShellModules
|
||||
TITLE UpdateHelpFilesForAllInstalledPowerShellModules
|
||||
SET Module=UpdateHelpFilesForAllInstalledPowerShellModules
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Update help files for all installed PowerShell Modules
|
||||
ECHO %TIME:~0,8% Update help files for all installed PowerShell Modules >>%logfile_setup% 2>&1
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "(C:\scripts\PowerShell\Update-PowerShellModulesHelp.ps1 -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Install Some VC Redistributable Choco Packages
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:InstallSomeVCRedistributableChocoPackages
|
||||
TITLE InstallSomeVCRedistributableChocoPackages
|
||||
SET Module=InstallSomeVCRedistributableChocoPackages
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Install some VC Redistributable Choco packages
|
||||
ECHO %TIME:~0,8% Install some VC Redistributable Choco packages >>%logfile_setup% 2>&1
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "(c:\scripts\PowerShell\Install-ChocoPackages_vcredist.ps1 -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Install Default .NET Choco Packages
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:InstallDefaultDotNETChocoPackages
|
||||
TITLE InstallDefaultDotNETChocoPackages
|
||||
SET Module=InstallDefaultDotNETChocoPackages
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Install default .NET Choco packages
|
||||
ECHO %TIME:~0,8% Install default .NET Choco packages >>%logfile_setup% 2>&1
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "(c:\scripts\PowerShell\Install-ChocoPackages_dotnet.ps1 -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment (ETPOSD)
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Install Choco Default Packages
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:InstallChocoDefaultPackages
|
||||
TITLE InstallChocoDefaultPackages
|
||||
SET Module=InstallChocoDefaultPackages
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Install Choco default packages
|
||||
ECHO %TIME:~0,8% Install Choco default packages >>%logfile_setup% 2>&1
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "(c:\scripts\PowerShell\Install-ChocoPackages.ps1 -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Manufacturer Specific Config And Software Installation
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:ManufacturerSpecificConfigAndSoftwareInstallation
|
||||
TITLE ManufacturerSpecificConfigAndSoftwareInstallation
|
||||
SET Module=ManufacturerSpecificConfigAndSoftwareInstallation
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Manufacturer specific config and software installation
|
||||
ECHO %TIME:~0,8% Manufacturer specific config and software installation >>%logfile_setup%
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "(C:\install\ManufacturerSpecific.ps1 -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,155 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: KMS Activation and Handling
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:KmsHandling
|
||||
TITLE KmsHandling
|
||||
SET Module=KmsHandling
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Turn on Windows Script Host
|
||||
ECHO %TIME:~0,8% Turn on Windows Script Host >>%logfile_setup%
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "$null = (New-ItemProperty -Path 'HKCU:\SOFTWARE\Microsoft\Windows Script Host\Settings' -Name Enabled -PropertyType DWord -Value 1 -Force -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
:ApplyMicrosoftWindows10EnterpriseKey
|
||||
:: https://docs.microsoft.com/de-de/windows-server/get-started/kmsclientkeys
|
||||
ECHO Apply Microsoft Windows 10 Enterprise key
|
||||
ECHO %TIME:~0,8% Apply Microsoft Windows 10 Enterprise key >>%logfile_setup%
|
||||
"%SystemRoot%\System32\cscript.exe" //nologo c:\windows\system32\slmgr.vbs /ipk NPPR9-FWDCX-D2C8J-H872K-2YT43 >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
:SetTheInternalKMSServerForWindows10
|
||||
:: For now, this will need VPN
|
||||
ECHO Set the internal KMS Server for Windows 10
|
||||
ECHO %TIME:~0,8% Set the internal KMS Server for Windows 10 >>%logfile_setup%
|
||||
"%SystemRoot%\System32\cscript.exe" //nologo c:\windows\system32\slmgr.vbs /skms kms.enatec.net >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
:: Ping the KMS server for Windows 10 activation
|
||||
:CheckW10KMSViaPing
|
||||
ping -n 3 -w 1000 kms.enatec.net >null 2>&1
|
||||
if %errorlevel% GTR 0 goto ChangeToTheOfficeDirectory
|
||||
|
||||
:ActivateWindows10ViaInternalKMSServer
|
||||
:: For now, this will need VPN
|
||||
ECHO Activate Windows 10 via internal KMS Server
|
||||
ECHO %TIME:~0,8% Activate Windows 10 via internal KMS Server >>%logfile_setup%
|
||||
"%SystemRoot%\System32\cscript.exe" //nologo c:\windows\system32\slmgr.vbs /ato >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
:ChangeToTheOfficeDirectory
|
||||
ECHO Change to the Office directory
|
||||
ECHO %TIME:~0,8% Change to the Office directory >>%logfile_setup%
|
||||
PUSHD "%ProgramFiles%\Microsoft Office\Office16" >nul 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
:ApplyMicrosoftOfficeProfessionalPlus2019Key
|
||||
ECHO Apply Microsoft Office Professional Plus 2019 key
|
||||
ECHO %TIME:~0,8% Apply Microsoft Office Professional Plus 2019 key >>%logfile_setup%
|
||||
"%SystemRoot%\System32\cscript.exe" //nologo ospp.vbs /inpkey:NMMKJ-6RK4F-KMJVX-8D9MJ-6MWKP >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
:: Ping the KMS server for Office activation
|
||||
:CheckOfficeKMSViaPing
|
||||
ping -n 3 -w 1000 kms.enatec.net >null 2>&1
|
||||
if %errorlevel% GTR 0 goto endInternalKMSServer
|
||||
|
||||
:SetTheInternalKMSServerForOfficeProducts
|
||||
ECHO Set the internal KMS Server for Office products
|
||||
ECHO %TIME:~0,8% Set the internal KMS Server for Office products >>%logfile_setup%
|
||||
"%SystemRoot%\System32\cscript.exe" //nologo ospp.vbs /sethst:kms.enatec.net >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
:: For now, this will need VPN
|
||||
:ActivateTheOffice2019ProductsViaTheInternalKMSServer
|
||||
ECHO Activate Office Professional Plus 2019 via internal KMS Server
|
||||
ECHO %TIME:~0,8% Activate Office Professional Plus 2019 via internal KMS Server >>%logfile_setup%
|
||||
"%SystemRoot%\System32\cscript.exe" //nologo ospp.vbs /act >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
:endInternalKMSServer
|
||||
POPD >nul 2>&1
|
||||
|
||||
:DisableWindowsScriptHost
|
||||
:: Turn off Windows Script Host (current user only)
|
||||
ECHO Turn off Windows Script Host
|
||||
ECHO %TIME:~0,8% Turn on Windows Script Host >>%logfile_setup%
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "$null = (New-ItemProperty -Path 'HKCU:\SOFTWARE\Microsoft\Windows Script Host\Settings' -Name Enabled -PropertyType DWord -Value 0 -Force -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,182 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Change Handling and tweaks Windows Remote Management (WinRM) - PLEASE READ THE NOTE BELOW
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: PLEASE NOTE THIS: This can become a security issue! <- <- <-
|
||||
::
|
||||
:: This script makes Windows Remote Management (WinRM) insecure!!!
|
||||
:: We do this by purpose, we will reconfigure it later with an Intune Poliy.
|
||||
:: We use it to administer the system within the local network, and this makes
|
||||
:: it much easier to use Mac's or Linux systems to connect to this system.
|
||||
::
|
||||
:: It will be skipped if outside of the enabling Technology network (or use VPN).
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:WinRMTwaeks
|
||||
TITLE WinRMTwaeks
|
||||
SET Module=WinRMTwaeks
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
: Use GHOST to figure out, if this system is connected directly to our Intranet
|
||||
ping -n 3 -w 1000 ghost.enatec.net >null 2>&1
|
||||
if %errorlevel% GTR 0 goto NotConnected
|
||||
|
||||
:EnableWindowsScriptHost
|
||||
ECHO Turn on Windows Script Host
|
||||
ECHO %TIME:~0,8% Turn on Windows Script Host >>%logfile_setup%
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "$null = (New-ItemProperty -Path 'HKCU:\SOFTWARE\Microsoft\Windows Script Host\Settings' -Name Enabled -PropertyType DWord -Value 1 -Force -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
: Enable Remote PowerShell
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "Enable-PSRemoting -Force -ErrorAction Continue"
|
||||
|
||||
: Quick default configuration for Windows Remote Management (WinRM)
|
||||
C:\Windows\system32\winrm.cmd quickconfig -q >null 2>&1
|
||||
|
||||
: Specifies the transport to use to send and receive WS-Management
|
||||
: protocol requests and responses.
|
||||
: The value must be either HTTP or HTTPS
|
||||
C:\Windows\system32\winrm.cmd quickconfig -transport:http >null 2>&1
|
||||
|
||||
: Specifies the maximum time-out, in milliseconds,
|
||||
: that can be used for any request other than Pull requests
|
||||
: The default is 60000
|
||||
C:\Windows\system32\winrm.cmd set winrm/config '@{MaxTimeoutms="1800000"}' >null 2>&1
|
||||
|
||||
: Specifies the maximum amount of memory allocated per shell,
|
||||
: including the shell's child processes.
|
||||
: The default is 150 MB
|
||||
C:\Windows\system32\winrm.cmd set winrm/config/winrs '@{MaxMemoryPerShellMB="800"}' >null 2>&1
|
||||
|
||||
: Allows the client computer to request unencrypted traffic.
|
||||
: By default, the client computer requires encrypted network traffic
|
||||
: and this setting is False.
|
||||
C:\Windows\system32\winrm.cmd set winrm/config/service '@{AllowUnencrypted="true"}' >null 2>&1
|
||||
|
||||
: Allows the client computer to use Basic authentication.
|
||||
: Basic authentication is a scheme in which the user name and password
|
||||
: are sent in clear text to the server or proxy.
|
||||
: This method is the least secure method of authentication.
|
||||
: The default is True.
|
||||
C:\Windows\system32\winrm.cmd set winrm/config/service/auth '@{Basic="true"}' >null 2>&1
|
||||
|
||||
: Allows the client computer to use Basic authentication.
|
||||
: Basic authentication is a scheme in which the user name and password
|
||||
: are sent in clear text to the server or proxy.
|
||||
: This method is the least secure method of authentication.
|
||||
: The default is True.
|
||||
C:\Windows\system32\winrm.cmd set winrm/config/client/auth '@{Basic="true"}' >null 2>&1
|
||||
|
||||
: Allows the client to use Credential Security Support Provider (CredSSP) authentication.
|
||||
: CredSSP enables an application to delegate the user's credentials
|
||||
: from the client computer to the target server.
|
||||
: The default is False.
|
||||
C:\Windows\system32\winrm.cmd set winrm/config/service/auth '@{CredSSP="true"}' >null 2>&1
|
||||
|
||||
: Specifies the TCP port for which this listener is created.
|
||||
: WinRM 2.0: The default HTTP port is 5985.
|
||||
C:\Windows\system32\winrm.cmd set winrm/config/listener?Address=*+Transport=HTTP '@{Port="5985"}' >null 2>&1
|
||||
|
||||
: Allow the Windows Remote Administration Rule Group
|
||||
C:\Windows\system32\netsh.exe advfirewall firewall set rule group="Windows Remote Administration" new enable=yes >null 2>&1
|
||||
|
||||
: Allow the Windows Remote Management (HTTP-In) Rule
|
||||
C:\Windows\system32\netsh.exe advfirewall firewall set rule name="Windows Remote Management (HTTP-In)" new localport=5985 enable=yes action=allow >null 2>&1
|
||||
|
||||
: Allow the Windows Remote Management (HTTPS-In) Rule
|
||||
C:\Windows\system32\netsh.exe advfirewall firewall set rule name="Windows Remote Management (HTTPS-In)" new localport=5986 enable=yes action=allow >null 2>&1
|
||||
|
||||
: Enable the Autostart of the Windows Remote Management (WinRM) Windows Service
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "Set-Service winrm -startuptype 'auto'" >null 2>&1
|
||||
|
||||
: Restart the Windows Remote Management (WinRM) Service
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "Restart-Service winrm" >null 2>&1
|
||||
|
||||
:DisableWindowsScriptHost
|
||||
:: Turn off Windows Script Host (current user only)
|
||||
ECHO Turn off Windows Script Host
|
||||
ECHO %TIME:~0,8% Turn on Windows Script Host >>%logfile_setup%
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "$null = (New-ItemProperty -Path 'HKCU:\SOFTWARE\Microsoft\Windows Script Host\Settings' -Name Enabled -PropertyType DWord -Value 0 -Force -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
goto ENDLOGIC
|
||||
|
||||
:NotConnected
|
||||
ECHO This Host is not connected directly to the Intranet (Skipped)
|
||||
ECHO %TIME:~0,8% This Host is not connected directly to the Intranet (Skipped) >>%logfile_setup%
|
||||
goto ENDLOGIC
|
||||
|
||||
:ENDLOGIC
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Desktop Cleanup
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:DesktopCleanup
|
||||
TITLE DesktopCleanup
|
||||
SET Module=DesktopCleanup
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Desktop Cleanup
|
||||
ECHO %TIME:~0,8% Desktop Cleanup >>%logfile_setup% 2>&1
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "(C:\scripts\PowerShell\Remove-AllPublicDesktopLinks.ps1 -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Set Power Plan To Auto
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:SetPowerPlanToAuto
|
||||
TITLE SetPowerPlanToAuto
|
||||
SET Module=SetPowerPlanToAuto
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Set Power Plan to Auto
|
||||
ECHO %TIME:~0,8% Set Power Plan to Auto >>%logfile_setup%
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "c:\scripts\PowerShell\Set-PowerPlanToAuto.ps1" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,89 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Set Default Start Menu
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:SetDefaultStartMenu
|
||||
TITLE SetDefaultStartMenu
|
||||
SET Module=SetDefaultStartMenu
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
ECHO Set the default Start menu
|
||||
ECHO %TIME:~0,8% Set the default Start menu >>%logfile_setup%
|
||||
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "(C:\scripts\PowerShell\Set-DefaultStartMenu.ps1 -ErrorAction Continue)" >>%logfile_setup% 2>&1
|
||||
ECHO Errorlevel=%Errorlevel% >>%logfile_setup% 2>nul
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2020, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
@@ -0,0 +1,84 @@
|
||||
#requires -Version 3.0
|
||||
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Interrupt the OOBE Process and starts our own
|
||||
|
||||
.DESCRIPTION
|
||||
Interrupt the OOBE Process and starts our own
|
||||
|
||||
.EXAMPLE
|
||||
PS C:\> .\BootOOBE.ps1
|
||||
|
||||
.NOTES
|
||||
Adopted from Roger Zander (@rzander)
|
||||
|
||||
.LINK
|
||||
https://github.com/rzander/mOSD
|
||||
#>
|
||||
[CmdletBinding(ConfirmImpact = 'None')]
|
||||
param ()
|
||||
|
||||
begin
|
||||
{
|
||||
$SCT = 'SilentlyContinue'
|
||||
|
||||
$PantherUA = "$env:windir\Panther\unattend.xml"
|
||||
|
||||
#region
|
||||
$paramGetProcess = @{
|
||||
Name = 'sysprep'
|
||||
ErrorAction = $SCT
|
||||
}
|
||||
$paramStopProcess = @{
|
||||
Force = $true
|
||||
ErrorAction = $SCT
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
||||
process
|
||||
{
|
||||
$paramSetLocation = @{
|
||||
Path = $PSScriptRoot
|
||||
ErrorAction = $SCT
|
||||
}
|
||||
$null = (Set-Location @paramSetLocation)
|
||||
|
||||
$null = (Get-Process @paramGetProcess | Stop-Process @paramStopProcess)
|
||||
|
||||
#Cleanup
|
||||
$paramTestPath = @{
|
||||
Path = $PantherUA
|
||||
ErrorAction = $SCT
|
||||
}
|
||||
if (Test-Path @paramTestPath)
|
||||
{
|
||||
$paramRemoveItem = @{
|
||||
Path = $PantherUA
|
||||
Force = $true
|
||||
Confirm = $false
|
||||
ErrorAction = $SCT
|
||||
}
|
||||
$null = (Remove-Item @paramRemoveItem)
|
||||
}
|
||||
|
||||
$null = (Get-Process @paramGetProcess | Stop-Process @paramStopProcess)
|
||||
|
||||
Start-Sleep -Seconds 2
|
||||
|
||||
# Start the sysprep process
|
||||
try
|
||||
{
|
||||
$null = (Start-Process -FilePath "$env:windir\System32\Sysprep\sysprep.exe" -ArgumentList '/oobe /quiet /reboot /unattend:C:\Windows\system32\sysprep\unattend.xml' -Wait)
|
||||
}
|
||||
catch
|
||||
{
|
||||
exit (1)
|
||||
}
|
||||
}
|
||||
|
||||
end
|
||||
{
|
||||
exit (0)
|
||||
}
|
||||
@@ -0,0 +1,102 @@
|
||||
@ECHO OFF
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: enabling Technology progressive OS deployment
|
||||
:: Client System Bootstrapper for Windows 10 Enterprise Installations
|
||||
::
|
||||
:: Setup Complete Wrapper
|
||||
:: Version 1.0.0
|
||||
::
|
||||
:: Tested with Windows 10 Enterprise Release 2004 and Release 2009
|
||||
::
|
||||
:: Please review all the scripts BEFORE you install it on any of your systems.
|
||||
:: This installation/configuration is customized to our internal requirements and might not fit for everyone!
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
|
||||
SETLOCAL
|
||||
|
||||
:SetupComplete
|
||||
TITLE SetupComplete
|
||||
SET Module=SetupComplete
|
||||
SET logfile_setup=%HOMEDRIVE%\Temp\%Module%.txt
|
||||
|
||||
:SetLogHeader
|
||||
ECHO ******************************************************************************** >%logfile_setup%
|
||||
ECHO Started %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO For %COMPUTERNAME% by %USERDOMAIN%\%USERNAME% >>%logfile_setup%
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
:LOGIC
|
||||
: Change some attributes of the Scripts directory
|
||||
attrib +A -R -S -H %windir%\setup\SCRIPTS\*.* /S /D
|
||||
|
||||
: Start any existing CMD file (including subfolders)
|
||||
CD %systemroot%\setup\SCRIPTS
|
||||
FOR /D %%f in (*) do (
|
||||
PUSHD %%f
|
||||
FOR %%g in (*.cmd) do (
|
||||
ECHO Call %%g >>%logfile_setup% 2>nul
|
||||
call %%g >nul 2>&1
|
||||
: START /MIN /WAIT "%%g" %%g
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
)
|
||||
POPD
|
||||
)
|
||||
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
ECHO Finished %Module% on %DATE:~0% - %TIME:~0,8%
|
||||
ECHO ******************************************************************************** >>%logfile_setup%
|
||||
ECHO.>>%logfile_setup% 2>nul
|
||||
|
||||
: Clean up after the setup is done
|
||||
IF EXIST %systemroot%\setup\SCRIPTS\done RD /s /q %systemroot%\setup\SCRIPTS >nul 2>&1
|
||||
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Changelog:
|
||||
::
|
||||
:: 0.9.0: Internal Test
|
||||
:: 1.0.0: Initial Release
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: License: BSD 3-Clause License
|
||||
::
|
||||
:: Copyright 2021, enabling Technology
|
||||
:: All rights reserved.
|
||||
::
|
||||
:: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
||||
:: following conditions are met:
|
||||
:: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
||||
:: disclaimer.
|
||||
:: 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
|
||||
:: following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
:: 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
|
||||
:: products derived from this software without specific prior written permission.
|
||||
::
|
||||
:: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
:: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
:: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
:: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
:: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
:: WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
:: USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
::
|
||||
:: Disclaimer:
|
||||
:: - Use at your own risk, etc.
|
||||
:: - This is open-source software, if you find an issue try to fix it yourself. There is no support and/or warranty
|
||||
:: in any kind
|
||||
:: - This is a third-party Software
|
||||
:: - The developer of this Software is NOT sponsored by or affiliated with Microsoft Corp (MSFT) or any of its
|
||||
:: subsidiaries in any way
|
||||
:: - The Software is not supported by Microsoft Corp (MSFT)
|
||||
:: - By using the Software, you agree to the License, Terms, and any Conditions declared and described above
|
||||
:: - If you disagree with any of the Terms, and any Conditions declared: Just delete it and build your own solution
|
||||
::
|
||||
:: ********************************************************************************************************************
|
||||
Reference in New Issue
Block a user