Excel 2013 work as an “Open With…” program in Windows 7, open prn
I just recently uninstalled Office 2010 32-bit and installed Office 2013 64-bit on my computer. I was sent some text files that are tab-delimited, so I want to open them with Excel.
I am trying to add Excel to the Open With... option in the right-click menu in Windows 7. Every time I try, I open the selection screen, browse to Excel.exe in the Office15 folder and press OK, but it refuses to stay as an option on the selection screen.
I know that I can open Excel and then open the file, or even drag-and-drop it onto Excel, but seeing as I'll be opening a lot of these files over the next few weeks, I'd really rather add it to the right-click menu (like I used to do all the time).
Any ideas as to why it won't allow me to open that way or how to fix it?
Solution:
Press
Win+R
and type regedit
. HKEY_CLASSES_ROOT\Applications\EXCEL.EXE\shell\open\command\(Default)
Within this key was the following "old"value:
"C:\Program Files (x86)\Microsoft Office\Office14\EXCEL.EXE" "%1"
When I changed it to the correct, new location for Excel, it started working immediately.
"C:\Program Files\Microsoft Office 15\root\office15\EXCEL.EXE""%1"
anyway, the new path maybe different based on your system setting(office installation):
like:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.txt\OpenWithList
"C:\Program Files\Microsoft Office\office14\EXCEL.EXE" "%1"
to
"C:\Program Files\Microsoft Office\office15\EXCEL.EXE" "%1"
original site:
http://superuser.com/questions/577109/why-wont-excel-2013-work-as-an-open-with-program-in-windows-7
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Java 텍스트 파일(.txt .csv)로부터의 입력 java.io.FileReader➊FileReader fr = new FileReader("파일 이름"); ➋Buffered br = BufferedReader(br); ➌String rec; rec = br.readLine(); ➍ fr.clos...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.