得之我幸 失之我命

when someone abandons you,it is him that gets loss because he lost someone who truly loves him but you just lost one who doesn’t love you.

win10 快捷方式美化

win10个性化:

  1. 去掉桌面快捷方式小箭头(需要重启桌面)
  2. 创建快捷方式时不显示"快捷方式"后缀

批处理代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
@echo off
rem 去除桌面小箭头
rem 用于存储显示应用程序与系统文件快捷方式的小箭头
reg delete HKCR\lnkfile /v IsShortcut /f
rem 用于存储显示MS_DOS程序快捷方式的小箭头
reg delete HKCR\piffie /v IsShortcut /f

rem 重起explorer.exe
taskkill /f /im explorer.exe
start explorer

rem 创建快捷方式时不显示"快捷方式"后缀
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer /v link /t REG_BINARY /d 00000000 /f

be yourself, everyone else is already taken.