mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-22 01:48:20 +02:00
Added make-install.ps1
This commit is contained in:
parent
47eabd1079
commit
3630624c23
@ -11,6 +11,7 @@ PowerShell Scripts Included
|
|||||||
* [lsmods.ps1](Scripts/lsmods.ps1) - lists all PowerShell modules
|
* [lsmods.ps1](Scripts/lsmods.ps1) - lists all PowerShell modules
|
||||||
* [lsproc.ps1](Scripts/lsproc.ps1) - lists the local computer processes
|
* [lsproc.ps1](Scripts/lsproc.ps1) - lists the local computer processes
|
||||||
* [MD5.ps1](Scripts/MD5.ps1) - prints the MD5 checksum of the given file
|
* [MD5.ps1](Scripts/MD5.ps1) - prints the MD5 checksum of the given file
|
||||||
|
* [make-install.ps1](Scripts/make-install.ps1) - installs built executables and libs to the installation directory
|
||||||
* [moon.ps1](Scripts/moon.ps1) - prints the current moon phase
|
* [moon.ps1](Scripts/moon.ps1) - prints the current moon phase
|
||||||
* [password.ps1](Scripts/password.ps1) - generates and prints a single new password
|
* [password.ps1](Scripts/password.ps1) - generates and prints a single new password
|
||||||
* [passwords.ps1](Scripts/passwords.ps1) - generates and prints a list of new passwords
|
* [passwords.ps1](Scripts/passwords.ps1) - generates and prints a list of new passwords
|
||||||
|
21
Scripts/make-install.ps1
Normal file
21
Scripts/make-install.ps1
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
@echo off
|
||||||
|
::
|
||||||
|
:: Syntax: make-install.ps1 <build-dir>
|
||||||
|
:: Description: Copies newer EXE's + DLL's from the build directory to the installation directory.
|
||||||
|
:: Author: Markus Fleschutz
|
||||||
|
::
|
||||||
|
|
||||||
|
set SRC_DIR=%1
|
||||||
|
set "DST_DIR=C:\Program Files\MyApp\bin"
|
||||||
|
set FILTER=*.exe *.dll
|
||||||
|
set OPTIONS=/E /njh /np
|
||||||
|
|
||||||
|
title Syncing to %DST_DIR% ...
|
||||||
|
robocopy %SRC_DIR% %DST_DIR% %FILTER% %OPTIONS%
|
||||||
|
|
||||||
|
echo ------------------------------------------------------------------------------
|
||||||
|
echo.
|
||||||
|
echo DONE - synced to %DST_DIR%
|
||||||
|
echo.
|
||||||
|
pause
|
||||||
|
exit /b 0
|
Loading…
Reference in New Issue
Block a user