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

#1
JohnGo

JohnGo

    Member

  • Member
  • PipPipPip
  • 339 posts

Dell Inspiron 5555; Win 10 Home, OS

 

A few days ago my laptop stopped allowing me to save a file from installed programs (Photoshop, SoundForge, etc) to the folder where they are normally stored.  When I attempt to save a file this error message appears: 

 

C:\Users\John\ Music\(file name)\.mp3. File Not Found.  Check the file name and try again.

 

 

I've researched online for a solution and see that it occurs often in Win 10. I have not been able to find anything that works for me.

Thank you for some help here.

 

John Go


  • 0

Advertisements


#2
dmccoy

dmccoy

    GeekU Junior

  • GeekU Junior
  • 1,295 posts

Will it save to Desktop or Download folders? Does the C:\Users\John\ Music\ folder exist on your computer.


  • 0

#3
JohnGo

JohnGo

    Member

  • Topic Starter
  • Member
  • PipPipPip
  • 339 posts

The C:\Users\John\ Music\ folder does exist.  I can "save as" to Downloads, but not Desktop.


  • 0

#4
dmccoy

dmccoy

    GeekU Junior

  • GeekU Junior
  • 1,295 posts

Okay try one more thing. Can you save to any folder in c:\users\john\


  • 0

#5
dmccoy

dmccoy

    GeekU Junior

  • GeekU Junior
  • 1,295 posts
  • Press the Windows + X keys to open the Advanced menu
  • Select Windows Powershell (Admin) from the menu
  • Copy and paste the commands below in the code box and press Enter
  • This will open the results in Notepad
    Copy and Paste the results to your reply.
    cd users\john
    get-acl | fl | out-file "$env:USERPROFILE\Desktop\file.txt"
    start notepad "$env:USERPROFILE\Desktop\file.txt"
    

  • 0

#6
JohnGo

JohnGo

    Member

  • Topic Starter
  • Member
  • PipPipPip
  • 339 posts

I tried saving a file to the following folders in c:\users\john: Pictures, Documents, Videos, and Favorites.  None would save.

____________________________________________________________________________________________________

 
Copyright © Microsoft Corporation. All rights reserved.
 
PS C:\WINDOWS\system32> cd users\john
cd : Cannot find path 'C:\WINDOWS\system32\users\john' because it does not exist.
At line:1 char:1
+ cd users\john
+ ~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (C:\WINDOWS\system32\users\john:String) [Set-Location], ItemNotFoundExce
   ption
    + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.SetLocationCommand
 
PS C:\WINDOWS\system32> get-acl | fl | out-file "$env:USERPROFILE\Desktop\file.txt"
out-file : Could not find file 'C:\Users\John\Desktop\file.txt'.
At line:1 char:16
+ get-acl | fl | out-file "$env:USERPROFILE\Desktop\file.txt"
+                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], FileNotFoundException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand
 
PS C:\WINDOWS\system32> start notepad "$env:USERPROFILE\Desktop\file.txt"

  • 0

#7
dmccoy

dmccoy

    GeekU Junior

  • GeekU Junior
  • 1,295 posts

Please verify this is the correct name of your user file - cd users\john. If not change to appropriate name. Nevermind I found the problem.

 

Try this command

cd \users\john
get-acl | fl | out-file "$env:USERPROFILE\Desktop\file.txt"
start notepad "$env:USERPROFILE\Desktop\file.txt"

Edited by dmccoy, 26 September 2018 - 11:49 AM.

  • 0

#8
JohnGo

JohnGo

    Member

  • Topic Starter
  • Member
  • PipPipPip
  • 339 posts
Windows PowerShell
Copyright © Microsoft Corporation. All rights reserved.
 
PS C:\WINDOWS\system32> cd \users\john
PS C:\users\john> get-acl | fl | out-file "$env:USERPROFILE\Desktop\file.txt"
out-file : Could not find file 'C:\Users\John\Desktop\file.txt'.
At line:1 char:16
+ get-acl | fl | out-file "$env:USERPROFILE\Desktop\file.txt"
+                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OpenError: (:) [Out-File], FileNotFoundException
    + FullyQualifiedErrorId : FileOpenFailure,Microsoft.PowerShell.Commands.OutFileCommand
 
PS C:\users\john> start notepad "$env:USERPROFILE\Desktop\file.txt"

  • 0

#9
dmccoy

dmccoy

    GeekU Junior

  • GeekU Junior
  • 1,295 posts

I am not sure why the command is not working I tested it on mine and it worked correctly. Try copying and pasting one line at a time in powershell if that does not work we will try another way.

 

Okay try this I think it is the same issue you are experiencing and will not let us copy to the desktop

 

cd \users\john
get-acl | fl | out-file c:\file.txt
start notepad c:\file.txt


Edited by dmccoy, 26 September 2018 - 12:11 PM.

  • 0

#10
dmccoy

dmccoy

    GeekU Junior

  • GeekU Junior
  • 1,295 posts

If that still does not work then try as follows

 

cd \users\john

get-acl | fl

 

This will output the results in Powershell windows.

 

Select all the results and copy and paste to your reply.


  • 0

Advertisements


#11
JohnGo

JohnGo

    Member

  • Topic Starter
  • Member
  • PipPipPip
  • 339 posts

Windows PowerShell

Copyright © Microsoft Corporation. All rights reserved.
 
PS C:\WINDOWS\system32> cd \users\john
PS C:\users\john>
PS C:\users\john> get-acl | flcd \users\john
flcd : The term 'flcd' 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:11
+ get-acl | flcd \users\john
+           ~~~~
    + CategoryInfo          : ObjectNotFound: (flcd:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
 
PS C:\users\john>
PS C:\users\john> get-acl | fl

  • 0

#12
dmccoy

dmccoy

    GeekU Junior

  • GeekU Junior
  • 1,295 posts

These are two seperate commands: 

 

not like this: get-acl | flcd \users\john

 

1. cd \users\john

2. get-acl | fl


  • 0

#13
dmccoy

dmccoy

    GeekU Junior

  • GeekU Junior
  • 1,295 posts

If you cannot get that to work then try the following

 

type cmd (which switches from powershell to command prompt)

type or copy and paste: dir c:\users\john /Q > 0 & notepad 0 (zeros)


Edited by dmccoy, 26 September 2018 - 12:58 PM.

  • 0

#14
JohnGo

JohnGo

    Member

  • Topic Starter
  • Member
  • PipPipPip
  • 339 posts
Windows PowerShell
Copyright © Microsoft Corporation. All rights reserved.
 
(#1)  PS C:\WINDOWS\system32>
 
 
 
 
 
(# 2)  Copyright © Microsoft Corporation. All rights reserved.
 
          PS C:\WINDOWS\system32> get-acl | fl
 

  • 0

#15
JohnGo

JohnGo

    Member

  • Topic Starter
  • Member
  • PipPipPip
  • 339 posts
Windows PowerShell
Copyright © Microsoft Corporation. All rights reserved.
 
(#1)  PS C:\WINDOWS\system32>
 
 
 
 
 
(# 2)  Copyright © Microsoft Corporation. All rights reserved.
 
          PS C:\WINDOWS\system32> get-acl | fl
 

  • 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