summaryrefslogblamecommitdiffstats
path: root/win10-prep.bat
blob: 0f1306c039ee6eff6d02c6be312b37d9de7869f3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12


         
                            







                                                                               












                                                       

           
                               
                         

                                 
                           

                                   
                           

                                     
                            

                          
                   
          

            
     





                                    
    

















                                                                                                                 
                                     








                                                         
                                                                                                           



                                                                                                          












                                                                                                                           















                                                                                                                                                                                                                              
                                                                                                                                        
                            
                                                                                                                                                                                                                                                                                                                                               
                                                    
                                                                                                          
                                                                                                                      

                                                                                                                       
                                                                                                                   
                                                                                                                                         
                                                                                                              

                                                                                                                  
                                                             


                                                                                                  






                                                                                                                             


































                                                                                                                                                                      
                                                                                                                        


                                                                                                                        
                                                                                                                           
                                                                                                            
                                                                                                                                       
                                                                  

                                                                                                                               










                                                                                             


                                                                                                    





                                                                                                             







                                                                                                                            




                                                                                                                 










                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                        



                                                                                                                                               

                                                                                                              

                                                                                        






























                                                                                                                                             








                                                                                                                                                                     



                                                                                                                      





                                                                                                                                                    









                                                                                                                                                



                                              

                                                                              



                                                                                               
                                                                                                           


                                                                                         








                                                                                                                                               


                                                                                      








                                                                                                               

                                                                                                         
                      















                                                                                                                              


























                                                                                                                                                                                                        


                                                                             






                                                                                                                                            
                                                                                               








                                                                                                                                         
                                                            




                                                                             
                                                      












                                                                                                                                                                


                                                                                               


                    
                                                                                                                                                                                                   
                    
rem intro
@echo off
title Windows 10 Prep Script
pushd "%~dp0"
cls
echo.
echo  :: Windows 10 Prep Script
echo.
echo     Please review and be aware of what this script does before running it.
echo     There is no uninstaller, and backups won't be created.
echo.
rem check permissions
net session >nul 2>&1
if %errorLevel% == 0 (
    echo     You won't be prompted any further.
    echo     Press [enter] to begin.
    echo.
    set /p=
) else (
    echo     This script requires administrator rights.
    echo     Press any key to exit
    pause >