PowerShellModules
PowerShellModules copied to clipboard
A collection of PowerShell modules
There are scenarios where a specific database name may be desired. Add a flag to allow overriding the default. /cc @DanielBolef
The copy routine probably needs to use `-LiteralPath` instead of `-Path`
When sending `-SiteZipPath` a folder path with a trailing slash, all of the files end up in the root with `Website` prepended to the file name according to @DanielBolef
Removed dependency on hidden Environment variables and instead use configuration settings that can be easily overridden during module import. Note: This does not replace the use of standard environment variables...
It would be nice if the script had a switch to avoid popping up that dialog going _Are you sure you want to move example-file to Recycle Bin?_
`Remove-ItemSafely -Force` becomes a misnomer if the `-Force` switch makes the command unsafe (delete permanently, without a confirmation prompt). For deleting permanently users ought to use `Remove-Item`. Maybe a change...
Hi, I have a question regarding 'recycle' 1.5.0. In this version I noticed that my script does not give me a 'are you sure to send to recycle bin' dialog,...
I ran a powershell command in a terminal that looped over many files, processing each to create a new file and then deleting the original file with Remove-ItemSafely. I minimized...
For me personally, it would be enough to have one `message`/`caption` parameter, however since `caption` is a `mandatory` parameter, you cannot use an empty string. or omit it Removing the...
Looks like I can't add `-Force` flag to the `Remove-ItemSafely` to move hidden files to recycle bin like `Get-ChildItem 'somewere' -Force | Remove-ItemSafely -Force`. Without it, on hidden files, I...