Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security & DevOps Insights

  • Home
  • About
  • Advertise With US
  • Reviews
  • Contact
  • Toggle search form

Tag: PowerShell

The Overview of Azure Cloud Shell

Posted on 26/08/202115/09/2023 Christian By Christian No Comments on The Overview of Azure Cloud Shell
The Overview of Azure Cloud Shell

Azure Cloud Shell is an interactive, authenticated, browser-accessible shell for managing Azure resources. It provides the flexibility of choosing the shell experience that best suits the way you work, either Bash or PowerShell. Whereas it also provides the flexibility of choosing either working with Bash or PowerShell. You can directly navigate to the shell account from…

Read More “The Overview of Azure Cloud Shell” »

AWS/Azure/OpenShift

Provisioning Azure Resources using Azure Az PowerShell Cmdlet from Cloud Shell

Posted on 20/08/202108/09/2024 Imoh Etuk By Imoh Etuk No Comments on Provisioning Azure Resources using Azure Az PowerShell Cmdlet from Cloud Shell
Provisioning Azure Resources using Azure Az PowerShell Cmdlet from Cloud Shell

In this article, we shall discuss how to provision Azure Resources using Azure Az PowerShell Cmdlet from Cloud Shell. Provisioning Azure resources using Azure Az PowerShell Cmdlet from Cloud Shell is an essential aspect of developing and managing applications on the cloud platform. Please see VMSA-2022-0026: An arbitrary file read vulnerability in VMware Aria Operations,…

Read More “Provisioning Azure Resources using Azure Az PowerShell Cmdlet from Cloud Shell” »

AWS/Azure/OpenShift, Scripts

How to upgrade PowerShell to the latest version on macOS via Homebrew

Posted on 15/04/202109/09/2023 Christian By Christian 4 Comments on How to upgrade PowerShell to the latest version on macOS via Homebrew
How to upgrade PowerShell to the latest version on macOS via Homebrew

PowerShell is a cross-platform task automation solution that runs on Windows, Linux, and macOS. It includes a command-line shell, an associated scripting language, and a framework for processing cmdlets. There are several ways to install PowerShell on macOS. If you wish to install PowerShell via Homebrew package manager for macOS, please see “how to install and uninstall…

Read More “How to upgrade PowerShell to the latest version on macOS via Homebrew” »

Mac

How to monitor Windows Server backup via PowerShell

Posted on 04/04/202118/04/2023 Christian By Christian No Comments on How to monitor Windows Server backup via PowerShell
How to monitor Windows Server backup via PowerShell

Task Scheduler enables you to automatically perform routine tasks on a chosen computer. Task Scheduler does this by monitoring whatever criteria you choose. This is referred to as “triggers” and then executing the tasks when those criteria are met. You can use the Task Scheduler to execute tasks such as starting an application, sending an…

Read More “How to monitor Windows Server backup via PowerShell” »

Windows Server

Determine the execution policy configured on Windows PC

Posted on 12/02/202108/05/2025 Christian By Christian No Comments on Determine the execution policy configured on Windows PC
Determine the execution policy configured on Windows PC

The default configuration of Windows systems prevents the execution of PowerShell scripts by configuring the PowerShell execution policy. This safety feature is implemented to control the conditions under which PowerShell loads configuration files and runs scripts. This feature helps prevent the execution of malicious scripts. Please see “how to set the PowerShell Execution Policy via the Windows…

Read More “Determine the execution policy configured on Windows PC” »

Windows

How to install MDT PowerShell module on Windows

Posted on 05/02/202122/07/2025 Christian By Christian No Comments on How to install MDT PowerShell module on Windows
How to install MDT PowerShell module on Windows

MDT PowerShell module is a vital tool that enables you to manage your Deployment Share using PowerShell effortlessly. In this article, we shall discuss how to install MDT PowerShell module. The MDT Windows PowerShell cmdlets come in a Windows PowerShell snap-in. The MDT cmdlets will then run from a Windows PowerShell console that has the…

Read More “How to install MDT PowerShell module on Windows” »

Scripts

Get a list of installed applications on Windows

Posted on 22/12/202024/10/2024 Christian By Christian 8 Comments on Get a list of installed applications on Windows
Get a list of installed applications on Windows

Kindly visit the following hyperlinks for more information. How to uninstall built-in apps using PowerShell in Windows 10, how to uninstall a program via Command Prompt (CMD) in Windows. In this article, you will learn how to get a list of installed applications on Windows. PowerShell is a task-based command-line shell and scripting language built on .NET….

Read More “Get a list of installed applications on Windows” »

Scripts

Unable to uninstall AppX? How to uninstall builtin programs using PowerShell in Windows 10

Posted on 16/12/202006/09/2023 Christian By Christian No Comments on Unable to uninstall AppX? How to uninstall builtin programs using PowerShell in Windows 10
Unable to uninstall AppX? How to uninstall builtin programs using PowerShell in Windows 10

Windows 10 includes a series of pre-installed apps that you can’t uninstall by selecting Uninstall options on their Start menu context menus. You may be encounter this issue from time to time that you are unable to uninstall certain applications via the graphical user interface. Below are some steps to help resolve this issue. See this guide on how to…

Read More “Unable to uninstall AppX? How to uninstall builtin programs using PowerShell in Windows 10” »

Scripts

How to perform PowerShell syntax check using PSScriptAnalyzer

Posted on 08/12/202030/12/2023 Christian By Christian No Comments on How to perform PowerShell syntax check using PSScriptAnalyzer
How to perform PowerShell syntax check using PSScriptAnalyzer

In this guide, we will discuss How to perform PowerShell syntax check using PSScriptAnalyzer. The PSScriptAnalyzer (PSSA) is an open-source tool that Microsoft developed. It is a static code checker for PowerShell modules and scripts. Here is a similar article on PowerShell debugging, Ansible Syntax Checker, how to debug a PowerShell script, how to install and debug…

Read More “How to perform PowerShell syntax check using PSScriptAnalyzer” »

Scripts

How to setup PowerShell on a Linux server

Posted on 24/11/202009/09/2023 Christian By Christian No Comments on How to setup PowerShell on a Linux server
How to setup PowerShell on a Linux server

As we know, PowerShell is a cross-platform task automation and configuration management framework from Microsoft built on top of the .NET Common Language Runtime; it accepts and returns .NET objects. It consists of a command line shell and an associated scripted language. Powershell enables management of both local and remote linux machines INSTALLING POWERSHELL ON…

Read More “How to setup PowerShell on a Linux server” »

Scripts

Restore AD Objects: How to restore deleted user accounts in Active Directory with Microsoft LDP and PowerShell

Posted on 21/11/202009/09/2023 Christian By Christian No Comments on Restore AD Objects: How to restore deleted user accounts in Active Directory with Microsoft LDP and PowerShell
Restore AD Objects: How to restore deleted user accounts in Active Directory with Microsoft LDP and PowerShell

Active Directory (AD) is a widely used directory system, the ability to restore unwanted changes in your AD infrastructure is crucial. When AD objects are deleted, they are placed in the Deleted Objects container (AD recycle bin). There are several methods to restore deleted user accounts, computer accounts, and security groups. These objects are known…

Read More “Restore AD Objects: How to restore deleted user accounts in Active Directory with Microsoft LDP and PowerShell” »

Windows Server

Set PowerShell Execution Policy via Windows Settings

Posted on 31/10/202008/05/2025 Christian By Christian No Comments on Set PowerShell Execution Policy via Windows Settings
Set PowerShell Execution Policy via Windows Settings

PowerShell is configured to prevent the execution of PowerShell scripts on Windows systems by default. The PowerShell execution policy is a safety feature implemented to control the various conditions under which PowerShell loads configuration files and runs scripts. As discussed in one of my previous blog posts “how to Set Execution Policy via Windows PowerShell” and “how to…

Read More “Set PowerShell Execution Policy via Windows Settings” »

Windows

Debugging: How to debug a PowerShell script

Posted on 22/10/202025/03/2024 Christian By Christian No Comments on Debugging: How to debug a PowerShell script
Debugging: How to debug a PowerShell script

Debugging is the process of finding and resolving issues within a computer program (software). In this article, I will be discussing some steps that you can employ to debug and fix issues in your PowerShell script. Kindly take a look at some articles on PowerShell that I have created. How to automate Windows Update with PowerShell…

Read More “Debugging: How to debug a PowerShell script” »

Windows

Posts pagination

Previous 1 2 3 4 5 Next

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

sysadmin top30a

  • Retrict access to external storage
    Restrict access to removable Storage Drives [Part 2] Windows
  • PowerShell 1
    How to upgrade PowerShell to the latest version on macOS via Homebrew Mac
  • Webp.net resizeimage 5
    How to create a Traffic Manager Profile in Azure AWS/Azure/OpenShift
  • SUID GUID Sticky Bit 1
    Set Special File Permissions with SUID or GUID and Sticky Bit Linux
  • download
    How to import Users and Groups into Pleasant Password Manager Password Manager
  • Error 1069 Windows could not start
    Fix Error 1069: Windows could not start the Veeam backup service on local computer Backup
  • ref error
    Error: cannot lock ref ‘refs/remotes/origin/windows’: unable to resolve reference ‘refs/remotes/origin/windows’, Not a directory Version Control System
  • Storage Explorer
    How to Install Azure Storage Explorer on Windows AWS/Azure/OpenShift

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,825 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon

Tags

AWS Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Deployment Services Windows Server 2016

Copyright © 2025 TechDirectArchive