This article is the next installment in our PowerShell Studio Project series and covers the basics of working with Windows Service Projects. Windows Services are programs that run in the background, with no user interaction. Services can start automatically when…
Read More
1. Why can’t I sign scripts with my TLS/SSL certificate?
Transport Layer Security (TLS) and its predecessor, Secure Sockets Layer (SSL), use encryption to transfer data securely between clients and servers. Certificates are issued with their intended purpose coded and…
Read More
Having multiple individual scripts sitting around on your machine can make it difficult to stay organized. Collection projects can help you manage your scripts while utilizing the benefits of a project in PowerShell Studio.
This article is the next installment…
Read More
PowerShell modules are an important part of PowerShell scripting as they provide a means to reuse and share code. The next part in our PowerShell Studio Project series is about the basics of working with module projects in PowerShell Studio.…
Read More
Using the project functionality in PowerShell Studio makes it easier to manage multi-file scripts, create multi-form GUIs, and create script modules.
To create a new project in PowerShell Studio, open the File menu, select the New tab, then select Project:…
Read More
With the latest service build of PowerShell Studio (5.8.201), we have added a new control—WebView2—to our Toolbox pane along with a new file template. The WebView2 is a modernized, updated control of the WebBrowser control. WebView2 uses Microsoft Edge (Chromium)…
Read More
Crash bugs are generally spectacular; your application just—poof—vanishes! Or it shows error messages from the OS in foreign languages or with some indecipherable codes. Or maybe it generates 17 entries in the Windows application log. In the worst cases, it…
Read More
PSF files are PowerShell Studio’s Windows Forms (WinForms) files (PowerShell Studio Form). This file contains all the designer and script information in an xml format. Most code in a PSF file should be an event or function. Any code not…
Read More
When you download or copy a file from the internet or any other untrusted source, Windows will set an extended attribute to mark the file as “blocked”. This is an important mechanism that stops the execution of potentially malicious code.…
Read More
As a follow-up to our previous events blog, Basics: What is an event and how do I handle them?, this article will be about the basics of handling events in PowerShell Studio’s Designer. As previously stated, an event is a…
Read More