View ShortNames-ZipFiles-SLTSVGtoPNG.ps1
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
# Run as admin | |
# Summary: Generates a random shortname for directories, unzips files, generates png from stl, generates png from svg | |
# Pre-req: | |
# Install OpenSCAD (Ex using chocolatey: choco install openscad -y) | |
# Install inkscape (ex using choco: choco install inkscape -y) | |
# Install superdelete (ex using choco: choco install superdelete -y) | |
# Enable Shortnames in Windows 10 by running the following commands (helps with 260 char. limits): | |
# fsutil 8dot3name query | |
# fsutil behavior set disable8dot3 0 | |
# Post [optional] |
View copyall.ps1
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 fcopy ($SourceDir,$DestinationDir) | |
{ | |
Get-ChildItem $SourceDir -Recurse | Where-Object { $_.PSIsContainer -eq $false } | ForEach-Object ($_) { | |
$SourceFile = $_.FullName | |
$DestinationFile = $DestinationDir + $_ | |
write-host "------------------------------------" | |
write-host "Source: $SourceFile" | |
write-host "Dest : $DestinationFile" | |
if (Test-Path "$DestinationFile"){ | |
if( (Get-FileHash "$SourceFile").Hash -ne (Get-FileHash "$DestinationFile").Hash ) { |
OlderNewer