This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function New-ShimLink { | |
<# | |
.SYNOPSIS | |
Function New-ShimLink | |
Create a Shim Link. | |
.EXAMPLE | |
PS:\> New-ShimLink [LinkTargetPath] [LinkNewPath] | |
PS:\> New-ShimLink "C:\Folder\File1.txt" "C:\Folder\ShimLink1.txt" | |
.PARAMETER LinkTargetPath | |
[String, Pos0, Mandatory, Exists] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
SETLOCAL | |
GOTO :MAIN | |
:SLEEP Function | |
"%WINDIR%\System32\timeout.exe" %1 1>NUL 2>&1 | |
GOTO :EOF | |
REM ============================================================= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
################################################################# | |
; Change the "Edit" context item (in Explorer right-click menu) | |
; to open the selected file using Sublime Text, | |
; optional comments for '*.txt' files and the ST icon. | |
################################################################# | |
#=== HKCR\batfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# ansi_colors.sh | |
# | |
# Wiki (ANSI CSI) https://en.wikipedia.org/wiki/ANSI_escape_code#CSI_(Control_Sequence_Introducer)_sequences | |
# Wiki (ANSI SGR) https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_(Select_Graphic_Rendition)_parameters | |
# Parameter 030-03F (0x30–0x3F) (ASCII 0–9:;<=>?) | |
# Intermediate 020-02F (0x20–0x2F) (ASCII space and !"#$%&'()*+,-./) | |
# Final 040-07E (0x40–0x7E) (ASCII @A–Z[\]^_`a–z{|}~) | |
# | |
# _______________________________________________________________ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
######## | |
# | |
# Install "figlet" package | |
# & Download figlet fonts | |
# (running as root) | |
# | |
# + Github Repositories: | |
#--> https://github.com/xero/figlet-fonts | |
#--> https://github.com/phracker/figlet-fonts |