windows_7_pdf_sys

:: windows7sp1

:: 查看编码
:: baidu windows 查看 环境编码 http://blog.csdn.net/java_belucky/article/details/18311225
chcp
:: test 1

:: 注册表自动改变字体大小%150 
:: HKEY_CURRENT_USER\Control Panel\Desktop\ Key: LogPixels ref google windows 7 registry display 150 https://answers.microsoft.com/en-us/windows/forum/windows_7-desktop/registry-entry-location-for-smaller-100-medium-125/576cc790-26f2-4dfc-aa57-158758998530
:: 96   –   Smaller 100% 120   –  Medium 125% 144  -   Larger 150% 192   –   Extra Large 200% 240  –  Custom 250% 288  –  Custom 300%   – 384  –  Custom 400% 480  –   Custom 500%
reg add "HKEY_CURRENT_USER\Control Panel\Desktop" /v LogPixels /t REG_DWORD /d "144" /f
reg query "HKEY_CURRENT_USER\Control Panel\Desktop" /v LogPixels
:: test 1

:: 注册表显示文件后缀
:: google windows 7 registry hide extensions for known file types
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v HideFileExt /t REG_DWORD /d "0" /f
reg query "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v HideFileExt
:: test 1

:: 显示隐藏文件
:: google batch hidden files
:: google windows 7 batch hidden files and folders registry https://www.howtogeek.com/283251/how-do-you-show-or-hide-windows-hidden-files-with-a-command-line-toggle/
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v Hidden /t REG_DWORD /d 1 /f
reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v Hidden
::test 1

:: 注册表修改caps
:: google windows 映射 caps ctrl http://hushicai.com/2016/01/07/win7-jiang-CapsLock-ying-she-wei-Ctrl.html
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout" /v "Scancode Map" /t REG_BINARY /d "0000000000000000020000001d003a0000000000" /f
reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout" /v "Scancode Map"
:: test 1

:: 注册表 删除任务栏默认图标
:: google windows 7 batch unpin all taskbar http://www.dostips.com/forum/viewtopic.php?t=6248 https://www.sevenforums.com/tutorials/214711-taskbar-pinned-items-reset-clear-windows-7-a.html
del "C:\Users\%USERNAME%\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar\*" /q
reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /F
:: test 1

:: 注册表 显示计算机图标
:: google windows 7 batch show computer on desktop http://superuser.com/questions/540353/how-to-show-hide-the-my-computer-icon-on-the-desktop-via-the-command-line
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu /v {20D04FE0-3AEA-1069-A2D8-08002B30309D} /t REG_DWORD /d 0 /f
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel /v {20D04FE0-3AEA-1069-A2D8-08002B30309D} /t REG_DWORD /d 0 /f
:: test 1

:: 注册表 调整最佳性能
:: google windows 7 reg add best performance http://stackoverflow.com/questions/20516428/how-could-i-disable-windows-effects-through-batch
:: reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects" /v VisualFXSetting /t REG_DWORD /d 2 /f
:: test 0! 无法只能改变选项位置,但是无法改变内容,只能手动

:: 注册表 添加到 path C:\Users\yjr\Desktop\shortcuts
:: reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v Path /t REG_SZ /d "%path%;c:\newpath" ref google windows 7 batch add path http://stackoverflow.com/questions/6523979/how-to-persistently-set-a-variable-in-windows-7-from-a-batch-file
:: echo %path%|find /i "%np:"=%">nul  || set path=%path%;%np%  ref google batch path duplicating http://superuser.com/questions/480238/cmd-append-to-path-without-duplicating-it
set shortcuts=C:\Users\%USERNAME%\Desktop\shortcuts
echo %shortcuts%
echo %path%|find /i "C:\Users\%USERNAME%\Desktop\shortcuts">nul || reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v Path /t REG_SZ /d "%path%;C:\Users\%USERNAME%\Desktop\shortcuts" /f
echo %path%
:: test 1

:: 注册表 任务栏 按钮从不合并
:: HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\TaskbarGlomLevel = 00000002 ref google windows 7 cmd never combine http://superuser.com/questions/135015/set-never-combine-in-windows-7-using-the-registry
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarGlomLevel /t REG_DWORD /d 2 /f
reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarGlomLevel
:: test 1

:: user show on desctop

:: cmd quickedit mode
:: google windows 7 registry quick edit mode cmd https://social.technet.microsoft.com/Forums/windowsserver/en-US/1a5a519d-f300-467d-995c-38711830869a/enable-cmd-quick-edit-mode-through-group-policy-for-all-users?forum=winserverGP
reg add HKEY_CURRENT_USER\Console /v QuickEdit /t REG_DWORD /d 1 /f
:: test 1

:: user account control settings 禁用,静默安装使用到
reg ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f
reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA

:: 手动最佳性能


set src=\\VBOXSVR\yjr\Downloads\windows 7
:: 安装 压缩软件 7z /S http://www.7-zip.org/faq.html
"%src%\7z1604-x64.exe" /S || echo 压缩软件 false
:: 安装 编辑器 notepad++ google notepad++ silent install http://www.itninja.com/software/open-source-1/notepad-2/5-1399
"%src%\npp_7.3.1_Installer.exe" /S
:: 安装 office 到光盘的 \ProPlus.WW 下把 config.xml 拷出来,修改:    <!-- <Display Level="full" CompletionNotice="yes" SuppressModal="no" AcceptEula="no" /> -->    改成:<Display AcceptEula="yes" SuppressModal="yes" CompletionNotice="no" Level="none"/> baidu office 2010 静默安装 http://www.07net01.com/linux/jingmo_Office_2010_anzhuang_282103_1367522149.html
"%src%\Office2010 64\Microsoft_Office_Professional_PlusVL_2010_x64_Activated\setup.exe" /config "%src%\Office2010 64\Config.xml"
:: 安装 .net 4 google dot net framework silent install https://msdn.microsoft.com/en-us/library/ee390831(v=vs.110).aspx
"%src%\Office2010 64\Microsoft.NET.exe" /q /norestart
:: 安装 SCM软件 git ref Git-2.11.1-64-bit.exe /?
"%src%\Git-2.11.1-64-bit.exe" /SILENT
:: 安装 购物im 旺旺
:: 安装 增强工具 7+ Taskbar Tweaker
"%src%\7tt_setup.exe" /S
:: 安装 pdf编辑软件 google Adobe Acrobat XI 静默 http://cdjiangchao.blog.51cto.com/635910/1397920  直接复制amtlib文件会出现全线不够的问题,需要先删除重复后复制
"%src%\Adobe Acrobat XI Pro 11.0.3 简体中文破解版\Adobe Acrobat XI Pro\Adobe Acrobat XI\Setup.exe" /sAll
del "C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\amtlib.dll"
copy "%src%\Adobe Acrobat XI Pro 11.0.3 简体中文破解版\amtlib.dll" "C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat"
:: 安装 下载软件 xunlei mini
"%src%\ThunderMini_dl1.5.3.288.exe" /S
:: 安装 hotkey软件 AutoHotkey
"%src%\AutoHotkey_1.1.24.05_setup.exe" /S
:: 安装 浏览器软件 Firefox 会弹出安装进度条
"%src%\Firefox-full-latest.exe" /S
:: 安装 输入法软件 sougou 会弹出完成框 baidu 搜狗输入法 静默安装
"%src%\sogou_pinyin_82f.exe" /S


:: 手动安装 pdf阅读器 foxitreader
"%src%\FoxitReader_CHS_8.1.5.1208.exe"

:: 配置
:: 复制pdf.vim到start up
:: 复制shortcut到桌面,快速启动
:: 手动激活Windows 7
:: 手动激活office 2010
:: google windows 7 英文 乱码 https://support.microsoft.com/zh-cn/help/2488245


pause
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值