This file contains hidden or 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
### Open GApps installer Options | |
# | |
# File Name: .gapps-config (takes precedence, filename begins with a dot ) | |
# gapps-config.txt | |
# .gapps-config-DEVICENAME Device-specific config files will take precedence over the non-device-specific ones. | |
# The DEVICENAME can be found in open_apps_log.txt or in the name of the ROM download. | |
# gapps-config-DEVICENAME.txt Device-specific config files will take precedence over the non-device-specific ones. | |
# The DEVICENAME can be found in open_apps_log.txt or in the name of the ROM download. | |
# |
This file contains hidden or 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
<# | |
Get-PowerShellSpecialFolders.ps1 | |
#> | |
# Create an array that contains commands, how to get a particular special folder, and the values (paths) that they produce | |
$special_folders = @() | |
$names = [Environment+SpecialFolder]::GetNames([Environment+SpecialFolder]) | Sort | |
ForEach ($name in $names) { | |
This file contains hidden or 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
<# | |
Rename-Files.ps1 | |
#> | |
# Find all wmv-files with a string "oldstring" and replace "oldstring" with "newstring" in the filename | |
Get-ChildItem *.wmv -Filter "*oldstring*" | ForEach { Rename-Item $_ -NewName $_.Name.Replace("oldstring","newstring") } | |
# Change the file extension of all .jpeg files to .jpg |
This file contains hidden or 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
<# | |
Get-TimeDifference.ps1 | |
Windows PowerShell: For a more comfortable reading experience, please type | |
help ./Get-TimeDifference -Full | |
#> | |
NewerOlder