Jump to content

Welcome to Geeks to Go - Register now for FREE

Need help with your computer or device? Want to learn new tech skills? You're in the right place!
Geeks to Go is a friendly community of tech experts who can solve any problem you have. Just create a free account and post your question. Our volunteers will reply quickly and guide you through the steps. Don't let tech troubles stop you. Join Geeks to Go now and get the support you need!

How it Works Create Account
Photo

Windows 10-Can't "Save" or "Save As" files from pr

- - - - -

Best Answer JohnGo , 27 September 2018 - 08:43 PM

dmccoy  Thank You very much for working this problem out for me, I really appreciate the help! JohnGo. Go to the full post »


  • Please log in to reply

#16
dmccoy

dmccoy

    GeekU Junior

  • GeekU Junior
  • 1,295 posts

It doesnt look like you are hitting Enter key after each command

 

1. cd \users\john (hit enter)

2. get-acl | fl (hit enter) should display the results.


  • 0

Advertisements


#17
JohnGo

JohnGo

    Member

  • Topic Starter
  • Member
  • PipPipPip
  • 339 posts
Windows PowerShell
Copyright © Microsoft Corporation. All rights reserved.
 
PS C:\WINDOWS\system32> cmd dir c:\users\john /Q > 0 & notepad 0 (zeros)Windows PowerShell
At line:1 char:30
+ cmd dir c:\users\john /Q > 0 & notepad 0 (zeros)Windows PowerShell
+                              ~
The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double
quotation marks ("&") to pass it as part of a string.
    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : AmpersandNotAllowed
 
PS C:\WINDOWS\system32> Copyright © Microsoft Corporation. All rights reserved.
C : The term 'C' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:12
+ Copyright © Microsoft Corporation. All rights reserved.
+            ~
    + CategoryInfo          : ObjectNotFound: (C:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
 
PS C:\WINDOWS\system32>
PS C:\WINDOWS\system32> PS C:\WINDOWS\system32> cmd dir c:\users\john /Q > 0 & notepad 0 (zeros)
At line:1 char:54
+ PS C:\WINDOWS\system32> cmd dir c:\users\john /Q > 0 & notepad 0 (zer ...
+                                                      ~
The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double
quotation marks ("&") to pass it as part of a string.
    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : AmpersandNotAllowed
 
PS C:\WINDOWS\system32>
PS C:\WINDOWS\system32>
PS C:\WINDOWS\system32>

  • 0

#18
JohnGo

JohnGo

    Member

  • Topic Starter
  • Member
  • PipPipPip
  • 339 posts

Sorry about that!

 

Windows PowerShell
Copyright © Microsoft Corporation. All rights reserved.
 
PS C:\WINDOWS\system32> cmddir c:\users\john /Q > 0 & notepad 0 (zeros)
At line:1 char:29
+ cmddir c:\users\john /Q > 0 & notepad 0 (zeros)
+                             ~
The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double
quotation marks ("&") to pass it as part of a string.
    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : AmpersandNotAllowed
 
PS C:\WINDOWS\system32>

  • 0

#19
dmccoy

dmccoy

    GeekU Junior

  • GeekU Junior
  • 1,295 posts

It looks like you are not hitting the enter key after each command.

 

1. cd \users\john 

2. get-acl | fl


  • 0

#20
JohnGo

JohnGo

    Member

  • Topic Starter
  • Member
  • PipPipPip
  • 339 posts
Windows PowerShell
Copyright © Microsoft Corporation. All rights reserved.
 
PS C:\WINDOWS\system32> cmddir c:\users\john /Q > 0 & notepad 0 (zeros)
At line:1 char:29
+ cmddir c:\users\john /Q > 0 & notepad 0 (zeros)
+                             ~
The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double
quotation marks ("&") to pass it as part of a string.
    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : AmpersandNotAllowed
 
PS C:\WINDOWS\system32> ^C
PS C:\WINDOWS\system32> ^C
PS C:\WINDOWS\system32>
 
 
 
 
Windows PowerShell
Copyright © Microsoft Corporation. All rights reserved.
 
PS C:\WINDOWS\system32> cmdget-acl | fl
cmdget-acl : The term 'cmdget-acl' is not recognized as the name of a cmdlet, function, script file, or operable
program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ cmdget-acl | fl
+ ~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (cmdget-acl:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
 
PS C:\WINDOWS\system32> ^C
PS C:\WINDOWS\system32>
 
 
 

  • 0

#21
dmccoy

dmccoy

    GeekU Junior

  • GeekU Junior
  • 1,295 posts

Okay sorry for the confusion. I was making assumptions you understood more how to run commands. I have enclosed a file called dirq.bat.

 

Download it to your downloads folder or other known location that works.

Then double click on the file "dirq.bat" to run.

This should open the results in notepad

Copy and paste the results in notepad to your reply.

 

Attached Files

  • Attached File  dirq.bat   36bytes   345 downloads

  • 0

#22
dmccoy

dmccoy

    GeekU Junior

  • GeekU Junior
  • 1,295 posts

For your information and help you run commands in the future if needed see below.

 

For the Powershell commands: We enter the following commands one at a time and hit the enter key after each command. Do Not enter the text in (quotes)

 

Option 1:

1. cd \users\john     (hit enter key)

It should show as 

c:\users\john 

2. get-acl | fl     (hit enter key and it should display the results.

 

Option 2:

1 cmd (hit enter key)

dir c:\users\john /Q > 0 & notepad 0    ( this is just a note to let you know those are zeros and not letter O)


  • 0

#23
JohnGo

JohnGo

    Member

  • Topic Starter
  • Member
  • PipPipPip
  • 339 posts
Volume in drive C is OS
 Volume Serial Number is 9A5A-6E51
 
 Directory of c:\users\john
 
09/19/2018  04:19 PM    <DIR>          NT AUTHORITY\SYSTEM    .
09/19/2018  04:19 PM    <DIR>          NT AUTHORITY\SYSTEM    ..
08/17/2018  01:23 PM    <DIR>          JG-DELLLAPTOP\John     3D Objects
02/07/2016  10:53 PM    <DIR>          JG-DELLLAPTOP\John     Aerial Photos
08/17/2018  01:23 PM    <DIR>          JG-DELLLAPTOP\John     Contacts
09/24/2018  07:54 PM    <DIR>          JG-DELLLAPTOP\John     Desktop
09/15/2018  11:18 PM    <DIR>          JG-DELLLAPTOP\John     Documents
09/26/2018  03:10 PM    <DIR>          JG-DELLLAPTOP\John     Downloads
10/30/2017  08:01 PM    <DIR>          JG-DELLLAPTOP\John     Dropbox
09/17/2018  09:43 PM    <DIR>          JG-DELLLAPTOP\John     Favorites
08/17/2018  01:23 PM    <DIR>          JG-DELLLAPTOP\John     Links
08/17/2018  01:23 PM    <DIR>          JG-DELLLAPTOP\John     Music
09/24/2018  11:40 AM    <DIR>          JG-DELLLAPTOP\John     OneDrive
08/31/2018  09:05 PM    <DIR>          JG-DELLLAPTOP\John     Pictures
08/17/2018  01:23 PM    <DIR>          JG-DELLLAPTOP\John     Saved Games
08/17/2018  01:23 PM    <DIR>          JG-DELLLAPTOP\John     Searches
08/17/2018  01:23 PM    <DIR>          JG-DELLLAPTOP\John     Videos
               0 File(s)              0 bytes
              17 Dir(s)  774,498,562,048 bytes free

  • 0

#24
JohnGo

JohnGo

    Member

  • Topic Starter
  • Member
  • PipPipPip
  • 339 posts
Windows PowerShell
Copyright © Microsoft Corporation. All rights reserved.
 
PS C:\WINDOWS\system32> cmddir c:\users\john /Q > 0 & notepad 0
At line:1 char:29
+ cmddir c:\users\john /Q > 0 & notepad 0
+                             ~
The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double
quotation marks ("&") to pass it as part of a string.
    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : AmpersandNotAllowed
 
PS C:\WINDOWS\system32>

  • 0

#25
dmccoy

dmccoy

    GeekU Junior

  • GeekU Junior
  • 1,295 posts

It shows you are the owner of those folders. Do they open for you in file explorer or do you get any errors


  • 0

Advertisements


#26
dmccoy

dmccoy

    GeekU Junior

  • GeekU Junior
  • 1,295 posts

download the enclosed file called dirper.txt

Rename the file to dirper.ps1

Right click on the dirper.ps1 file

Select Run with Powershell from the menu

This should run the command and open in notepad

Copy and paste the results to your reply

 

Attached Files


  • 0

#27
JohnGo

JohnGo

    Member

  • Topic Starter
  • Member
  • PipPipPip
  • 339 posts

All 4 of the previously mentioned folders will open in file exoplorer.

 

 

 
 
Path   : Microsoft.PowerShell.Core\FileSystem::C:\users\john
Owner  : NT AUTHORITY\SYSTEM
Group  : NT AUTHORITY\SYSTEM
Access : NT AUTHORITY\SYSTEM Allow  FullControl
         BUILTIN\Administrators Allow  FullControl
         JG-DELLLAPTOP\John Allow  FullControl
         JG-DELLLAPTOP\John Allow  ReadAndExecute, Synchronize
Audit  : 
Sddl   : O:SYG:SYD:P(A;OICI;FA;;;SY)(A;OICI;FA;;;BA)(A;OICI;FA;;;S-1-5-21-1608197955-2912570886-594771145-1001)(A;;0x12
         00a9;;;S-1-5-21-1608197955-2912570886-594771145-1001)

  • 0

#28
dmccoy

dmccoy

    GeekU Junior

  • GeekU Junior
  • 1,295 posts

Okay, All your permissions look correct. What folder are you trying to save your photoshop files?


  • 0

#29
JohnGo

JohnGo

    Member

  • Topic Starter
  • Member
  • PipPipPip
  • 339 posts

Mostly to a sub-folder under PICTURES.


  • 0

#30
dmccoy

dmccoy

    GeekU Junior

  • GeekU Junior
  • 1,295 posts

Open file explorer

Right click on your Pictures folder

Select properties

Click on the General tab

provide a screenshot or picture

 

Click on the Security tab

Select your name under Usernames

provide a screenshot or picture

 

How to use the Snipping tool for Screenshots

https://support.micr...ure-screenshots


  • 0






Similar Topics

0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users

As Featured On:

Microsoft Yahoo BBC MSN PC Magazine Washington Post HP