Adding ALL RESTRICTED APPLICATION PACKAGES to folder permissionsFolder Permissions in Windows 7Windows 7:...
What route did the Hindenburg take when traveling from Germany to the U.S.?
Controversial area of mathematics
Why was Germany not as successful as other Europeans in establishing overseas colonies?
Rivers without rain
Repelling Blast: Must targets always be pushed back?
How to have a sharp product image?
Do I have an "anti-research" personality?
What is the strongest case that can be made in favour of the UK regaining some control over fishing policy after Brexit?
Why does nature favour the Laplacian?
How did Captain America manage to do this?
What is the most expensive material in the world that could be used to create Pun-Pun's lute?
A Strange Latex Symbol
Are Boeing 737-800’s grounded?
The Defining Moment
Stop and Take a Breath!
How would one muzzle a full grown polar bear in the 13th century?
Binary Numbers Magic Trick
Why was the Spitfire's elliptical wing almost uncopied by other aircraft of World War 2?
Why does processed meat contain preservatives, while canned fish needs not?
Why do Computer Science majors learn Calculus?
Don’t seats that recline flat defeat the purpose of having seatbelts?
How could Tony Stark make this in Endgame?
What are the potential pitfalls when using metals as a currency?
What language was spoken in East Asia before Proto-Turkic?
Adding ALL RESTRICTED APPLICATION PACKAGES to folder permissions
Folder Permissions in Windows 7Windows 7: “Replace All Child Object Permissions” Doesn't Stay CheckedWindows 8 Security shows all “permissions incorrectly ordered”Shared folder contents all opening as read onlyRestricted Windows Permissions on Network DrivesHow to give permissions to Dropbox, but remove all rights of other users on WindowsWhat is “This folder only” permission propagating?Folder permissions for group of usersNTFS Folder PermissionsScript to update permissions (Shared Folder)
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I'm unable to add the user, ALL RESTRICTED APPLICATION PACKAGES, to the permissions list on a folder that was created in Windows 10. How can this be done using Windows Explorer (Security ——> Advanced)?
windows windows-10 security permissions file-permissions
add a comment |
I'm unable to add the user, ALL RESTRICTED APPLICATION PACKAGES, to the permissions list on a folder that was created in Windows 10. How can this be done using Windows Explorer (Security ——> Advanced)?
windows windows-10 security permissions file-permissions
Why did you want to add this permission to a folder? Which folder?
– Waka
Apr 3 '18 at 2:22
The reason being I wanted to define a new "spools" folder that has the exact same permissions as the default one in C:WindowsSystem32. This might not be possible, after all.
– Guy Mann
Apr 3 '18 at 12:51
add a comment |
I'm unable to add the user, ALL RESTRICTED APPLICATION PACKAGES, to the permissions list on a folder that was created in Windows 10. How can this be done using Windows Explorer (Security ——> Advanced)?
windows windows-10 security permissions file-permissions
I'm unable to add the user, ALL RESTRICTED APPLICATION PACKAGES, to the permissions list on a folder that was created in Windows 10. How can this be done using Windows Explorer (Security ——> Advanced)?
windows windows-10 security permissions file-permissions
windows windows-10 security permissions file-permissions
asked Apr 2 '18 at 17:45
Guy MannGuy Mann
1114
1114
Why did you want to add this permission to a folder? Which folder?
– Waka
Apr 3 '18 at 2:22
The reason being I wanted to define a new "spools" folder that has the exact same permissions as the default one in C:WindowsSystem32. This might not be possible, after all.
– Guy Mann
Apr 3 '18 at 12:51
add a comment |
Why did you want to add this permission to a folder? Which folder?
– Waka
Apr 3 '18 at 2:22
The reason being I wanted to define a new "spools" folder that has the exact same permissions as the default one in C:WindowsSystem32. This might not be possible, after all.
– Guy Mann
Apr 3 '18 at 12:51
Why did you want to add this permission to a folder? Which folder?
– Waka
Apr 3 '18 at 2:22
Why did you want to add this permission to a folder? Which folder?
– Waka
Apr 3 '18 at 2:22
The reason being I wanted to define a new "spools" folder that has the exact same permissions as the default one in C:WindowsSystem32. This might not be possible, after all.
– Guy Mann
Apr 3 '18 at 12:51
The reason being I wanted to define a new "spools" folder that has the exact same permissions as the default one in C:WindowsSystem32. This might not be possible, after all.
– Guy Mann
Apr 3 '18 at 12:51
add a comment |
2 Answers
2
active
oldest
votes
This is special system group that used for UWP apps. It's not available for general users to edit to add or remove it to folder or files. It's defined by system itself.
add a comment |
It appears to be impossible to add ALL RESTRICTED APPLICATION PACKAGES
via Windows Explorer, but this can easily be achieved via a little PowerShell:
$user = [Security.Principal.NTAccount]::new("ALL RESTRICTED APPLICATION PACKAGES").Translate([System.Security.Principal.SecurityIdentifier])
$rule = [Security.AccessControl.FileSystemAccessRule]::new($user, "ReadAndExecute", "Allow") # or whatever permissions you require, you can change them later via Explorer
$directory = "path/to/your/directory"
$acl = Get-Acl $directory
$acl.SetAccessRule($rule)
Set-Acl -Path $directory -AclObject $acl
However, for your case - wanting to bulk copy the permissions from one directory to another - you're better off, well, copying the permissions, instead of trying to add them manually. For that task you can use the Copy-Acl
PowerShell script:
Copy-ACL -SourcePath "C:WindowsSystem32spool" -DestinationPath "my_new_spool_directory_location" -BreakInheritance -KeepInherited
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1310137%2fadding-all-restricted-application-packages-to-folder-permissions%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is special system group that used for UWP apps. It's not available for general users to edit to add or remove it to folder or files. It's defined by system itself.
add a comment |
This is special system group that used for UWP apps. It's not available for general users to edit to add or remove it to folder or files. It's defined by system itself.
add a comment |
This is special system group that used for UWP apps. It's not available for general users to edit to add or remove it to folder or files. It's defined by system itself.
This is special system group that used for UWP apps. It's not available for general users to edit to add or remove it to folder or files. It's defined by system itself.
answered Apr 3 '18 at 2:21
WakaWaka
85334
85334
add a comment |
add a comment |
It appears to be impossible to add ALL RESTRICTED APPLICATION PACKAGES
via Windows Explorer, but this can easily be achieved via a little PowerShell:
$user = [Security.Principal.NTAccount]::new("ALL RESTRICTED APPLICATION PACKAGES").Translate([System.Security.Principal.SecurityIdentifier])
$rule = [Security.AccessControl.FileSystemAccessRule]::new($user, "ReadAndExecute", "Allow") # or whatever permissions you require, you can change them later via Explorer
$directory = "path/to/your/directory"
$acl = Get-Acl $directory
$acl.SetAccessRule($rule)
Set-Acl -Path $directory -AclObject $acl
However, for your case - wanting to bulk copy the permissions from one directory to another - you're better off, well, copying the permissions, instead of trying to add them manually. For that task you can use the Copy-Acl
PowerShell script:
Copy-ACL -SourcePath "C:WindowsSystem32spool" -DestinationPath "my_new_spool_directory_location" -BreakInheritance -KeepInherited
add a comment |
It appears to be impossible to add ALL RESTRICTED APPLICATION PACKAGES
via Windows Explorer, but this can easily be achieved via a little PowerShell:
$user = [Security.Principal.NTAccount]::new("ALL RESTRICTED APPLICATION PACKAGES").Translate([System.Security.Principal.SecurityIdentifier])
$rule = [Security.AccessControl.FileSystemAccessRule]::new($user, "ReadAndExecute", "Allow") # or whatever permissions you require, you can change them later via Explorer
$directory = "path/to/your/directory"
$acl = Get-Acl $directory
$acl.SetAccessRule($rule)
Set-Acl -Path $directory -AclObject $acl
However, for your case - wanting to bulk copy the permissions from one directory to another - you're better off, well, copying the permissions, instead of trying to add them manually. For that task you can use the Copy-Acl
PowerShell script:
Copy-ACL -SourcePath "C:WindowsSystem32spool" -DestinationPath "my_new_spool_directory_location" -BreakInheritance -KeepInherited
add a comment |
It appears to be impossible to add ALL RESTRICTED APPLICATION PACKAGES
via Windows Explorer, but this can easily be achieved via a little PowerShell:
$user = [Security.Principal.NTAccount]::new("ALL RESTRICTED APPLICATION PACKAGES").Translate([System.Security.Principal.SecurityIdentifier])
$rule = [Security.AccessControl.FileSystemAccessRule]::new($user, "ReadAndExecute", "Allow") # or whatever permissions you require, you can change them later via Explorer
$directory = "path/to/your/directory"
$acl = Get-Acl $directory
$acl.SetAccessRule($rule)
Set-Acl -Path $directory -AclObject $acl
However, for your case - wanting to bulk copy the permissions from one directory to another - you're better off, well, copying the permissions, instead of trying to add them manually. For that task you can use the Copy-Acl
PowerShell script:
Copy-ACL -SourcePath "C:WindowsSystem32spool" -DestinationPath "my_new_spool_directory_location" -BreakInheritance -KeepInherited
It appears to be impossible to add ALL RESTRICTED APPLICATION PACKAGES
via Windows Explorer, but this can easily be achieved via a little PowerShell:
$user = [Security.Principal.NTAccount]::new("ALL RESTRICTED APPLICATION PACKAGES").Translate([System.Security.Principal.SecurityIdentifier])
$rule = [Security.AccessControl.FileSystemAccessRule]::new($user, "ReadAndExecute", "Allow") # or whatever permissions you require, you can change them later via Explorer
$directory = "path/to/your/directory"
$acl = Get-Acl $directory
$acl.SetAccessRule($rule)
Set-Acl -Path $directory -AclObject $acl
However, for your case - wanting to bulk copy the permissions from one directory to another - you're better off, well, copying the permissions, instead of trying to add them manually. For that task you can use the Copy-Acl
PowerShell script:
Copy-ACL -SourcePath "C:WindowsSystem32spool" -DestinationPath "my_new_spool_directory_location" -BreakInheritance -KeepInherited
edited yesterday
answered yesterday
Ian KempIan Kemp
170112
170112
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1310137%2fadding-all-restricted-application-packages-to-folder-permissions%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Why did you want to add this permission to a folder? Which folder?
– Waka
Apr 3 '18 at 2:22
The reason being I wanted to define a new "spools" folder that has the exact same permissions as the default one in C:WindowsSystem32. This might not be possible, after all.
– Guy Mann
Apr 3 '18 at 12:51