PowerShell Snippets: Delete File
This post is part of the series on PowerShell Snippets. The following PowerShell command will check if the named file exists in the current directory and, if so, delete it (replace the highlighted...
View ArticlePowerShell Snippets: Run Application (Such as 7-zip)
This post is part of the series on PowerShell Snippets. The following PowerShell command will execute a Windows application supplying a number of parameters; in this case I am using 7-zip to compress a...
View ArticlePowerShell Snippets: Format Json for Curl
This post is part of the series on PowerShell Snippets. The following PowerShell shows the format required for use in Curl (which I will cover in the next post of this series). It took me a number of...
View ArticlePowerShell Snippets: Use Curl
This post is part of the series on PowerShell Snippets. The following PowerShell command will execute curl passing in the authorization token and json parameters defined above the curl statement. The...
View ArticlePowerShell Snippets: Get One Value from GitHub Json
This post is part of the series on PowerShell Snippets. While looking into uploading a release asset to a GitHub release, I discovered that to do this I needed the internal numeric id for a release and...
View ArticlePowerShell Snippets: Get Numeric Value from String
This post is part of the series on PowerShell Snippets. In the previous post, I showed how a single element could be retrieved from a GitHub release by executing curl and selecting the required...
View ArticlePowerShell Snippets: Prompt for User Input
This post is part of the series on PowerShell Snippets. The following PowerShell command will prompt the user to input some text which is then stored in the $ghTag parameter for later use: $ghTag =...
View ArticlePowerShell Script to Change Language of SSRS Reports
Microsoft Dynamics GP ships with a set of standard SSRS reports which includes many useful reports which clients want to use. However, these reports ship with the language set to en-US which means all...
View ArticlePowerShell Snippets: Prompt User for Password
This post is part of the series on PowerShell Snippets. In this last post, in this series, I showed a PowerShell snippet which would prompt a user for input. This is fine if you are prompting for a...
View ArticlePowerShell Snippets: Prompt for Multiple Inputs
This post is part of the series on PowerShell Snippets. Over the last two posts of this series, I’ve shown PowerShell cmdlets which prompt for user input and prompt for secure entry of passwords. A...
View Article