Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security, Veeam & DevOps

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

Tag: PowerShell

Debugging: How to debug a PowerShell script

Posted on 22/10/202025/03/2024 IT Expert By IT Expert 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

Difference between testing and debugging

Posted on 22/10/202030/12/2023 IT Expert By IT Expert No Comments on Difference between testing and debugging
Difference between testing and debugging

Testing and debugging are two key terms that are used interchangeably because of their similarities. Nevertheless, Testing and debugging processes are used to improve the quality of software development thereby making it error-free. Here are some nice guides on this topic: How to debug a PowerShell script, how to install and debug logs with the…

Read More “Difference between testing and debugging” »

Windows

How to pause a PowerShell script

Posted on 09/10/202015/02/2025 IT Expert By IT Expert No Comments on How to pause a PowerShell script
How to pause a PowerShell script

PowerShell is a cross-platform task automation and configuration management framework, consisting of a command-line shell and scripting language. Unlike most shells, which accept and return text, PowerShell is built on top of the . NET Common Language Runtime (CLR), and accepts and returns . NET objects. In this post, we will discuss How to pause…

Read More “How to pause a PowerShell script” »

Windows

How to update PowerShell and Package Management via GPO

Posted on 22/05/202019/05/2026 IT Expert By IT Expert No Comments on How to update PowerShell and Package Management via GPO
How to update PowerShell and Package Management via GPO

In this article we shall discuss how to update PowerShell and Package Management via GPO. The PowerShell announced PowerShell 7 on March 4th, 2020. PowerShell 7 is built on .NET Core 3 and brings many unique APIs required by modules built on .NET Framework in order for them to work with .NET Core runtime. You…

Read More “How to update PowerShell and Package Management via GPO” »

Windows Server

PowerShell: How to update PowerShellGet and Package Management

Posted on 22/05/202026/09/2023 IT Expert By IT Expert No Comments on PowerShell: How to update PowerShellGet and Package Management
PowerShell: How to update PowerShellGet and Package Management

PowerShellGet is an open-source project, and both the PowerShellGet and PackageManagement modules are available in the PowerShell Gallery. PowerShellGet is now a repo under github.com/PowerShell. The PackageManagement module is already open-sourced as it is part of the OneGet project.  Check out the new PowerShellGet repo at github.com/PowerShell/PowerShellGet. PowerShellGet is a PowerShell module with commands for discovering, installing, updating, and publishing the…

Read More “PowerShell: How to update PowerShellGet and Package Management” »

Windows Server

Install and update PowerShell version 7 on Windows and Linux

Posted on 22/05/202020/05/2026 IT Expert By IT Expert No Comments on Install and update PowerShell version 7 on Windows and Linux
Install and update PowerShell version 7 on Windows and Linux

In this guide we shall discuss “Install and update PowerShell version 7 on Windows and Linux”. On March 4th, 2020, Microsoft announced the Generally Available (GA) release of PowerShell 7.0. PowerShell 7 is the latest major update to PowerShell, a cross-platform (Windows, Linux, and macOS) automation tool and configuration framework optimized for dealing with structured…

Read More “Install and update PowerShell version 7 on Windows and Linux” »

Scripts, Windows Server

How to reset your built-in Local Administrator password in Windows 10

Posted on 05/05/202015/08/2023 IT Expert By IT Expert No Comments on How to reset your built-in Local Administrator password in Windows 10
How to reset your built-in Local Administrator password in Windows 10

A password, sometimes called a passcode, is secret data, typically a string of characters, usually used to confirm a user’s identity. In this article, we shall discuss how to reset your built-in Local Administrator password in Windows 10. Typically, passwords are expected to be memorized, but the large number of password-protected services that typical individuals…

Read More “How to reset your built-in Local Administrator password in Windows 10” »

Windows Server

Export and Import Scheduled Tasks in Windows

Posted on 03/05/202008/04/2023 IT Expert By IT Expert No Comments on Export and Import Scheduled Tasks in Windows
Export and Import Scheduled Tasks in Windows

Windows Task Scheduler enables Administrators to quickly create and run tasks automatically. Using this tool, you can launch apps, run scripts, or execute commands on a particular day and time, or even during a specific event. Some articles on Task Scheduler: How to create, edit and delete a scheduled task via the command prompt (CMD), how…

Read More “Export and Import Scheduled Tasks in Windows” »

Windows Server

How to install and Update Azure PowerShell on your Windows PC

Posted on 09/04/202011/09/2023 IT Expert By IT Expert No Comments on How to install and Update Azure PowerShell on your Windows PC
How to install and Update Azure PowerShell on your Windows PC

Here are the steps to install the Azure PowerShell module on Windows.– Install the Azure PowerShell modules using PowerShellGet (best method).– By installing (importing) windows module for PowerShell– By installing Azure PowerShell modules with the MSI Note: Azure PowerShell is also available in Azure Cloud Shell and is now preinstalled in Docker images. Example 1:…

Read More “How to install and Update Azure PowerShell on your Windows PC” »

AWS/Azure/OpenShift

Create a self-signed certificate and export it in PFX format via PowerShell [Part 1]

Posted on 09/04/202025/03/2024 IT Expert By IT Expert 2 Comments on Create a self-signed certificate and export it in PFX format via PowerShell [Part 1]
Create a self-signed certificate and export it in PFX format via PowerShell [Part 1]

A self-signed certificate is a certificate that is signed by the person or organization creating it rather than a trusted certificate authority. In this article, we shall discuss how to create a self-signed certificate and export it in PFX format via PowerShell [Part 1]. Please see how to Delete Quick Heal Anti-virus cfrbackup folder, and Generate a self-signed SSL certificate: How to enable…

Read More “Create a self-signed certificate and export it in PFX format via PowerShell [Part 1]” »

Scripts

How to create a KDS root key using PowerShell

Posted on 09/04/202009/10/2024 IT Expert By IT Expert No Comments on How to create a KDS root key using PowerShell
How to create a KDS root key using PowerShell

If you intend to use Group Managed Service Accounts (gMSAs) feature. You will have to create a root key for the group key distribution service within Active Directory. One great benefit is that the gMSA password management moves to the Windows operating system. In this article, we will discuss how to create a KDS root key using PowerShell….

Read More “How to create a KDS root key using PowerShell” »

Scripts

WinRM and PSRemoting: Configure servers for remote access

Posted on 25/03/202020/08/2024 IT Expert By IT Expert No Comments on WinRM and PSRemoting: Configure servers for remote access
WinRM and PSRemoting: Configure servers for remote access

The Enable-PSRemoting cmdlet configures the computer to receive PowerShell remote commands that are sent by using the WS-Management technology. In this article, we shall be discussing WinRM and PSRemoting: How to configure servers for remote access. Here are some interesting guides: How to request a certificate signing request in Windows using Microsoft Management Console, how…

Read More “WinRM and PSRemoting: Configure servers for remote access” »

Scripts

Connecting to a remote server failed and WinRM cannot process the request: Error code 0x8009030e occurred while using Kerberos authentication, and a specified logon session does not exist

Posted on 25/03/202027/07/2023 IT Expert By IT Expert 2 Comments on Connecting to a remote server failed and WinRM cannot process the request: Error code 0x8009030e occurred while using Kerberos authentication, and a specified logon session does not exist
Connecting to a remote server failed and WinRM cannot process the request: Error code 0x8009030e occurred while using Kerberos authentication, and a specified logon session does not exist

I have put together three similar error types I simulated in my Test laboratory. When you are prompted with the following error when using the invoke-command, the following solutions and explanation below will help you resolve this issue. In this article, we will discuss how to resolve “Connecting to a remote server failed and WinRM…

Read More “Connecting to a remote server failed and WinRM cannot process the request: Error code 0x8009030e occurred while using Kerberos authentication, and a specified logon session does not exist” »

Scripts

Posts pagination

Previous 1 … 3 4 5 Next

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

Veeam Vanguard

  • jooblejobs
    Find your dream job with Jooble JIRA|Confluence|Apps
  • Rules of Delegation
    Assign users with rights to reset password in Active Directory Windows Server
  • Install FileZilla Client
    FileZilla Client on Mac: How to Transfer Files to WordPress via SFTP Mac
  • DC 3
    How to demote and remove a Domain Controller on Windows Servers Windows Server
  • screenshot 2020 04 17 at 17.09.01
    How to configure a remote Windows Server to Support Ansible Windows Server
  • control panel
    Enable or Disable Control Panel and Windows Settings App Windows
  • Webp.net resizeimage 5
    How to create a Traffic Manager Profile in Azure AWS/Azure/OpenShift
  • KMS server setup
    How to set up and configure the Key Management System (KMS) Windows Server

Subscribe to Blog via Email

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

Join 1,801 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