Skip to content

Instantly share code, notes, and snippets.

@hyrious
Last active May 6, 2017 04:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hyrious/d55dfbebc9e46a3dcb084ebb76ddbc0f to your computer and use it in GitHub Desktop.
Save hyrious/d55dfbebc9e46a3dcb084ebb76ddbc0f to your computer and use it in GitHub Desktop.
Create desktop.ini ...
@echo off
setlocal
if exist desktop.ini ( attrib +A -S -H desktop.ini )
>desktop.ini echo [.ShellClassInfo]
>>desktop.ini echo LocalizedResourceName=%~1
>>desktop.ini echo IconResource=
>>desktop.ini echo InfoTip=%~2
call notepad desktop.ini
attrib -A +S +H desktop.ini
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment