Tech News Today
  • Hardware
    • Motherboards
    • CPUs
    • Graphic Cards
    • RAM
    • SSDs
    • Computer Cases
    • Monitors
    • Peripherals
    • Power Supply Unit
    • PC Builds
    • Computer Tips
  • Software
  • Operating System
    • Windows
    • Mac
    • Linux
  • Gaming
  • Mobile
  • Console
  • More
    • Internet
    • Networking
    • Security
    • Buyer’s Guide
    • Gadgets
    • Laptops
    • Reviews
    • How To
    • News
Facebook Twitter Instagram
Tech News Today
  • Hardware
    • Motherboards
    • CPUs
    • Graphic Cards
    • RAM
    • SSDs
    • Computer Cases
    • Monitors
    • Peripherals
    • Power Supply Unit
    • PC Builds
    • Computer Tips
  • Software
  • Operating System
    • Windows
    • Mac
    • Linux
  • Gaming
  • Mobile
  • Console
  • More
    • Internet
    • Networking
    • Security
    • Buyer’s Guide
    • Gadgets
    • Laptops
    • Reviews
    • How To
    • News
Tech News Today
Home»Windows»What is Local Security Policy? 6 Ways to Open it

What is Local Security Policy? 6 Ways to Open it

Abhishek SilwalBy Abhishek SilwalNovember 18, 2022
local security policy windows

The Local Security Policy is a built-in editor on Windows that includes the security policy settings. It is available in Windows Professional and Enterprise editions but not in Windows Home Editions.

You can use it to configure different types of security options for your computer by creating restrictions for particular users, networks, or software applications. Many users also use this tool to deal with certain system issues.

In this article, we briefly explain this program and provide various ways to open it on a Windows system. Apart from that, we have also explained how you can download and use the utility in Windows Home edition.

Table of Contents

  • What is Local Security Policy?
  • How to Open Local Security Policy?
    • Using Run or Other Command Line Tools
    • From Local Group Policy Editor
    • Using Search Bar
    • Through File Explorer
    • By Creating Shortcuts
    • Through Windows Tools
  • How to Open Local Security Policy on Windows Home?

What is Local Security Policy?

The Local Security Policy is an administrative tool that shows the security policies on your local device and allows modifications to such policies. Along with the account and user-level security options, you can also set the configuration for accessing other resources such as servers, domains, domain controllers, and so on.

security-settings-secpol

It includes the following categories of policies:

  • Account Policies: Interaction of user accounts with the computer or domain
  • Local Policies: Various audit, user rights, local account, device, logon, network, and user account control policies
  • Windows Firewall with Advanced Security: Advanced firewall configuration
  • Network List Manager Policies: Identification and configuration of networks
  • Public Key Policies: Encryption and data protection policies
  • Software Restriction Policies: Configuration of permissions for software
  • Application Control Policies: User-level application permissions
  • IP Security Policies on Local Computer: Establishing trust over IP networks
  • Advanced Audit Policy Configuration: Management of security event logs

The policies are mostly self-explanatory. Additionally, you can double-click on them and go to the Explain tab to get more information. These policies apply to all the users in the local system, not individual ones. So, they offer a nice way to restrict permissions for certain users.

However, one thing you need to keep in mind is that if your computer is part of a domain, any security policy applied by the domain controller or admin overrides the security settings for your local computer.

If you wish to configure your security options, you need to have access to the domain controller and edit the security settings of the Group Policy Object (GPO), which is imposing those.

How to Open Local Security Policy?

Below mentioned are all the possible methods to open the Local Security Policy on Windows. You can pick any method according to your preference.

Using Run or Other Command Line Tools

The easiest way to open this utility is by using the Run command. Here’s what you need to do:

  1. Open Run by pressing Win + R.
  2. Type secpol.msc and press Enter.
    run-secpol-msc

You can also use the secpol.msc shortcut on the following Command tools:

  • Command Prompt and Windows PowerShell.
  • The address bar of file explorer.
  • File > Run new task on Task Manager (Ctrl + Shift + Esc).

From Local Group Policy Editor

The Local Security Policy comes as the Security Settings extension of the Local Group Policy Editor snap-in. So you can access the security policies through the Local Group Policy Editor. Here’s how you can do so:

  1. Open Run.
  2. Type gpedit.msc to open Local Group Policy Editor.
  3. Expand Computer Configuration > Windows Settings > Security Settings.
    local-group-policy-editor-security-settings

Here, you’ll see the same settings as that inside the Local Security Policy.

Using Search Bar

Another method to open this program is to search for it on the search bar. To do so,

  1. Press Win + S to load the search bar.
  2. Type secpol or security policy and click on Local Security Policy.
    local-security-policy-start-search

Through File Explorer

The Run or command line shortcuts open the Local Security Policy file present in the %SystemRoot%\System32 folder. So, you can also directly go inside this folder and open the file on your computer. Here are the necessary steps:

  1. Press Win + E to open the File Explorer.
  2. Navigate to C:\Windows\System32
  3. Look for secpol.msc and open it.
    secpol-system32

By Creating Shortcuts

You can also create shortcuts for the Local Security Policy on the Desktop so as to open it more quickly in the future. To do so,

  1. Open the File Explorer and go to C:\Windows\System32
  2. Right-click on secpol.msc and select Send to > Desktop (create shortcut) or Show more options > Send to > Desktop (create shortcut).
    send-to-desktop-create-shortcut

However, keep in mind that you can’t drag the icon to the Taskbar to create a Taskbar shortcut.

Through Windows Tools

Windows Tools is a collection of all administrative tools on Windows, which also includes the Local Security Policy Editor. You can access it from the start menu or the control panel. Here’s what you need to do:

From Start Menu

  1. Click on the Start icon to open the menu.
  2. On Windows 10, scroll down and click on Windows Tools.
  3. On Windows 11, select All apps, scroll down and then click on Windows Tools.
    windows-tools
  4. Search for and double-click on Local Security Policy.

From Control Panel

  1. Open Run.
  2. Type control and press Enter to open the Control Panel.
  3. Set View by to Large icons or Small icons.
  4. Look for and click on Windows tools.
    windows-tools-control-panel
  5. Double-click on Local Security Policy.

How to Open Local Security Policy on Windows Home?

Local Security Policy is a part of the Local Group Policy Editor, and this administrative tool is not present on Windows Home editions. So, if you want to open them in such a system, you need to use the Deployment Image Servicing and Management (DISM) tool to download the Group Policy Editor package from Microsoft. To do so,

  1. Open Run.
  2. Type cmd and press Ctrl + Shift + Enter to open the Elevated Command Prompt.
  3. Enter the following commands:
    • for %i IN ("%SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~*.mum") do (DISM /Online /NoRestart /Add-Package:"%i")
    • for %i IN ("%SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~*.mum") do (DISM /Online /NoRestart /Add-Package:"%i")
      cmd-group-policy-client-tools

Alternatively, you can create a batch file to easily install the Local Group Policy Editor. To do so,

  1. Open Run.
  2. Type notepad and press Enter to open this text editor.
  3. Enter the following lines in the text editor:
@echo off
pushd "%~dp0"

dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum >List.txt
dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~3*.mum >>List.txt

for /f %%i in ('findstr /i . List.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"

pause
  1. Press Ctrl + Shift + S to save the file with a different extension.
  2. Set your save location to any folder you want.
  3. Set File type to All files and File name to enable_group_policy.bat and click Save.
    file-name-save-type-bat-save
  4. Open the File Explorer and navigate to the save location.
  5. Double-click on enable_group_policy.bat

After installing the package, you can use the methods in the previous section to open the Local Security Policy.

how-to
Abhishek Silwal

Abhishek Silwal is an Electronics Engineer and a technical writer at TechNewsToday. He specializes in troubleshooting a wide range of computer-related issues. His educational background in Electronics Engineering has given him a solid foundation in understanding of computers. He is also proficient in several programming languages and has worked on various robotics projects. Even in his early days, he used to tinker with various computer components, both hardware, and software, to satiate his curiosity. This experience has given him a breadth of experience that goes beyond his educational qualification. Abhishek has been writing articles on dealing with varieties of technical issues and performing specific tasks, especially on a Windows machine. He strives to create comprehensive guides on fixing many system and hardware issues and help others solve their problems.

Related Posts

how to make windows 11 look like windows 10

How to Make Windows 11 Look Like Windows 10

January 25, 2023
how to find hidden folder in laptop

How to Find Hidden Folder in Laptop

January 24, 2023
mouse not showing in chrome

Mouse Not Showing in Chrome? Here’s How to Fix It

January 25, 2023
how-to-move-taskbar-windows-11

How to Move Taskbar on Windows 11

January 24, 2023
stickers on windows

How to Add Stickers on Windows 11 Desktop

January 23, 2023
how to add weather to taskbar windows 11

How to Add Weather to Taskbar Windows 11

January 22, 2023
Add A Comment

Leave A Reply Cancel Reply

Latest Posts
how long does a cmos battery last

How Long Does a CMOS Battery Last

January 25, 2023
thunderbolt vs usb c

Thunderbolt Vs USB C: What’s the Difference

January 25, 2023
how to find hidden folder in laptop

How to Find Hidden Folder in Laptop

January 24, 2023
You may also like
watch-twitch-on-roku-tv

How to Watch Twitch on Roku TV

January 25, 2023
hp mouse not working

HP Mouse Not Working? Here’s How to Fix It

January 25, 2023
install-kodi-on-firestick

How to Install Kodi on Firestick (Step-By-Step Guide)

January 25, 2023
Recommended
Cookie Clicker Garden Guide

Cookie Clicker Garden Guide to Unlocking Every Seed

September 26, 2021
monitor no signal

Computer Turns On But Monitor Says No Signal (9 Ways To Fix)

November 10, 2022
Facebook Twitter Pinterest
  • Home
  • About Us
  • Our Team
  • Editorial Guidelines
  • Privacy Policy
  • Affiliate Disclosure
© 2023 TechNewsToday.

Type above and press Enter to search. Press Esc to cancel.