Ubuntu Wine - cannot find C:\windows\system32?
I have installed wine 1.8 and winetricks on my Xubuntu 16.04 but I have the error below when I try to install an exe file:
wine: cannot find L"C:\windows\system32\Set-up.exe"
Any ideas why and how I can fix it?
xubuntu wine winetricks
add a comment |
I have installed wine 1.8 and winetricks on my Xubuntu 16.04 but I have the error below when I try to install an exe file:
wine: cannot find L"C:\windows\system32\Set-up.exe"
Any ideas why and how I can fix it?
xubuntu wine winetricks
Where isSet-up.exe
located?
– muru
Dec 26 '16 at 10:51
@muru I created a folder on my desktop and put it there. Shud I put it in a specific place instead?
– laukok
Dec 26 '16 at 13:06
2
then try runningwine ~/Desktop/folder-name/Set-up.exe
– muru
Dec 26 '16 at 15:14
@teelou Please read the Wine Guide in askubuntu.com/questions/316025/… to know how to execute file outside of the Wine default environment
– Luis Alvarado♦
Feb 18 '17 at 15:49
add a comment |
I have installed wine 1.8 and winetricks on my Xubuntu 16.04 but I have the error below when I try to install an exe file:
wine: cannot find L"C:\windows\system32\Set-up.exe"
Any ideas why and how I can fix it?
xubuntu wine winetricks
I have installed wine 1.8 and winetricks on my Xubuntu 16.04 but I have the error below when I try to install an exe file:
wine: cannot find L"C:\windows\system32\Set-up.exe"
Any ideas why and how I can fix it?
xubuntu wine winetricks
xubuntu wine winetricks
asked Dec 26 '16 at 10:16
laukoklaukok
64651635
64651635
Where isSet-up.exe
located?
– muru
Dec 26 '16 at 10:51
@muru I created a folder on my desktop and put it there. Shud I put it in a specific place instead?
– laukok
Dec 26 '16 at 13:06
2
then try runningwine ~/Desktop/folder-name/Set-up.exe
– muru
Dec 26 '16 at 15:14
@teelou Please read the Wine Guide in askubuntu.com/questions/316025/… to know how to execute file outside of the Wine default environment
– Luis Alvarado♦
Feb 18 '17 at 15:49
add a comment |
Where isSet-up.exe
located?
– muru
Dec 26 '16 at 10:51
@muru I created a folder on my desktop and put it there. Shud I put it in a specific place instead?
– laukok
Dec 26 '16 at 13:06
2
then try runningwine ~/Desktop/folder-name/Set-up.exe
– muru
Dec 26 '16 at 15:14
@teelou Please read the Wine Guide in askubuntu.com/questions/316025/… to know how to execute file outside of the Wine default environment
– Luis Alvarado♦
Feb 18 '17 at 15:49
Where is
Set-up.exe
located?– muru
Dec 26 '16 at 10:51
Where is
Set-up.exe
located?– muru
Dec 26 '16 at 10:51
@muru I created a folder on my desktop and put it there. Shud I put it in a specific place instead?
– laukok
Dec 26 '16 at 13:06
@muru I created a folder on my desktop and put it there. Shud I put it in a specific place instead?
– laukok
Dec 26 '16 at 13:06
2
2
then try running
wine ~/Desktop/folder-name/Set-up.exe
– muru
Dec 26 '16 at 15:14
then try running
wine ~/Desktop/folder-name/Set-up.exe
– muru
Dec 26 '16 at 15:14
@teelou Please read the Wine Guide in askubuntu.com/questions/316025/… to know how to execute file outside of the Wine default environment
– Luis Alvarado♦
Feb 18 '17 at 15:49
@teelou Please read the Wine Guide in askubuntu.com/questions/316025/… to know how to execute file outside of the Wine default environment
– Luis Alvarado♦
Feb 18 '17 at 15:49
add a comment |
4 Answers
4
active
oldest
votes
Run the Configure Wine application from the launcher or open a terminal with CtrlAltT and issue the command winecfg
Either way you will get a Configuration Window for Wine. Insure that you are emulating the right version of Windows for your application and that the settings on all the tabs are sane. Drive Mapping Example Below:
Note: In a typical installation of Wine The directory noted in your question can be found at ~/.wine/drive_c/windows/system32
and you can examine the content with the command.
ls ~/.wine/drive_c/windows/system32
You can find the location of the Set-up.exe file in your question with the terminal command find ~/.wine -name Set-up.exe
provided it's anywhere close to where it's supposed to be.
On the off chance you've placed it somewhere outside the Wine drive mapping environment you should be able to locate it with the command sudo find / -name Set-up.exe
If anything in this answer is unclear please leave me a comment and I'll do my best to clarify.
add a comment |
Run winecfg and ensure you have / and ../drive_c mounted in the Drives tab.
2
Welcome to Ask Ubuntu! I recommend editing this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on AskUbuntu.)
– David Foerster
Feb 19 '17 at 9:28
add a comment |
If you don't provide full path (or relative path), wine will only search in "c:windowssystem32"
Just execute your file along with the path
# wine ./Set-up.exe
Replace ./
with another path if the file is not in your current path.
New contributor
add a comment |
Related to this issue>
This is regarding a wine bug https://bugs.winehq.org/show_bug.cgi?id=39403 described in this link
https://www.reddit.com/r/wine_gaming/comments/3vuuu9/steam_store_cant_connect_giving_me_black_screen/ . I want to show installing wine/windows steam games from The Linux Terminal is possible despite the black screen.This allows them to appear in your steam games Library.
There is one problem that must be fixed first and is shown is my work/ research:
In terminal issue:
wine steam.exe
you get this:
wine: cannot find L"C:windowssystem32steam.exe"
Wine wants any windows executable programs to be installed there for some reason. In my case steam.exe
Solution:
wine start /d "C:nameoffoldercontainingexecutable" example.exe
For example:
steamsetup.exe is installed in C:Program Files where i like it to be.
Therefore the magic key to issue a command for installing any windows game from the Linux terminal in wine steam is:
wine start /d "C:Program Filessteamfoldername" steam.exe -applaunch steamappID#
The steam app ID is found in the URL of the steam game's web page.
wine start /d - Sets the working directory for the executable.
I apologise for combining multiple subjects but to me this is my first post to help others and this is a complicated issue but I hope my idea can be used effectively in a post.
Thank you
NOTE For some very rediculous reason when i finish editing this post the windows command line bars shows only 1 at a time. They should have 2 for each typed. I can't explain this otherwise.
This doesn't answer the question asked. It appears that you intended this to be a new question regarding the links you provided. Please don't attempt to put questions in answers or answers in questions. Thank you. I recommend that you review askubuntu.com/help/how-to-ask
– Elder Geek
Oct 6 '18 at 20:44
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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%2faskubuntu.com%2fquestions%2f864649%2fubuntu-wine-cannot-find-c-windows-system32%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Run the Configure Wine application from the launcher or open a terminal with CtrlAltT and issue the command winecfg
Either way you will get a Configuration Window for Wine. Insure that you are emulating the right version of Windows for your application and that the settings on all the tabs are sane. Drive Mapping Example Below:
Note: In a typical installation of Wine The directory noted in your question can be found at ~/.wine/drive_c/windows/system32
and you can examine the content with the command.
ls ~/.wine/drive_c/windows/system32
You can find the location of the Set-up.exe file in your question with the terminal command find ~/.wine -name Set-up.exe
provided it's anywhere close to where it's supposed to be.
On the off chance you've placed it somewhere outside the Wine drive mapping environment you should be able to locate it with the command sudo find / -name Set-up.exe
If anything in this answer is unclear please leave me a comment and I'll do my best to clarify.
add a comment |
Run the Configure Wine application from the launcher or open a terminal with CtrlAltT and issue the command winecfg
Either way you will get a Configuration Window for Wine. Insure that you are emulating the right version of Windows for your application and that the settings on all the tabs are sane. Drive Mapping Example Below:
Note: In a typical installation of Wine The directory noted in your question can be found at ~/.wine/drive_c/windows/system32
and you can examine the content with the command.
ls ~/.wine/drive_c/windows/system32
You can find the location of the Set-up.exe file in your question with the terminal command find ~/.wine -name Set-up.exe
provided it's anywhere close to where it's supposed to be.
On the off chance you've placed it somewhere outside the Wine drive mapping environment you should be able to locate it with the command sudo find / -name Set-up.exe
If anything in this answer is unclear please leave me a comment and I'll do my best to clarify.
add a comment |
Run the Configure Wine application from the launcher or open a terminal with CtrlAltT and issue the command winecfg
Either way you will get a Configuration Window for Wine. Insure that you are emulating the right version of Windows for your application and that the settings on all the tabs are sane. Drive Mapping Example Below:
Note: In a typical installation of Wine The directory noted in your question can be found at ~/.wine/drive_c/windows/system32
and you can examine the content with the command.
ls ~/.wine/drive_c/windows/system32
You can find the location of the Set-up.exe file in your question with the terminal command find ~/.wine -name Set-up.exe
provided it's anywhere close to where it's supposed to be.
On the off chance you've placed it somewhere outside the Wine drive mapping environment you should be able to locate it with the command sudo find / -name Set-up.exe
If anything in this answer is unclear please leave me a comment and I'll do my best to clarify.
Run the Configure Wine application from the launcher or open a terminal with CtrlAltT and issue the command winecfg
Either way you will get a Configuration Window for Wine. Insure that you are emulating the right version of Windows for your application and that the settings on all the tabs are sane. Drive Mapping Example Below:
Note: In a typical installation of Wine The directory noted in your question can be found at ~/.wine/drive_c/windows/system32
and you can examine the content with the command.
ls ~/.wine/drive_c/windows/system32
You can find the location of the Set-up.exe file in your question with the terminal command find ~/.wine -name Set-up.exe
provided it's anywhere close to where it's supposed to be.
On the off chance you've placed it somewhere outside the Wine drive mapping environment you should be able to locate it with the command sudo find / -name Set-up.exe
If anything in this answer is unclear please leave me a comment and I'll do my best to clarify.
edited Feb 18 '17 at 20:50
answered Feb 18 '17 at 20:39
Elder GeekElder Geek
27.4k955128
27.4k955128
add a comment |
add a comment |
Run winecfg and ensure you have / and ../drive_c mounted in the Drives tab.
2
Welcome to Ask Ubuntu! I recommend editing this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on AskUbuntu.)
– David Foerster
Feb 19 '17 at 9:28
add a comment |
Run winecfg and ensure you have / and ../drive_c mounted in the Drives tab.
2
Welcome to Ask Ubuntu! I recommend editing this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on AskUbuntu.)
– David Foerster
Feb 19 '17 at 9:28
add a comment |
Run winecfg and ensure you have / and ../drive_c mounted in the Drives tab.
Run winecfg and ensure you have / and ../drive_c mounted in the Drives tab.
answered Feb 18 '17 at 15:44
C'mon say MeowC'mon say Meow
11
11
2
Welcome to Ask Ubuntu! I recommend editing this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on AskUbuntu.)
– David Foerster
Feb 19 '17 at 9:28
add a comment |
2
Welcome to Ask Ubuntu! I recommend editing this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on AskUbuntu.)
– David Foerster
Feb 19 '17 at 9:28
2
2
Welcome to Ask Ubuntu! I recommend editing this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on AskUbuntu.)
– David Foerster
Feb 19 '17 at 9:28
Welcome to Ask Ubuntu! I recommend editing this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on AskUbuntu.)
– David Foerster
Feb 19 '17 at 9:28
add a comment |
If you don't provide full path (or relative path), wine will only search in "c:windowssystem32"
Just execute your file along with the path
# wine ./Set-up.exe
Replace ./
with another path if the file is not in your current path.
New contributor
add a comment |
If you don't provide full path (or relative path), wine will only search in "c:windowssystem32"
Just execute your file along with the path
# wine ./Set-up.exe
Replace ./
with another path if the file is not in your current path.
New contributor
add a comment |
If you don't provide full path (or relative path), wine will only search in "c:windowssystem32"
Just execute your file along with the path
# wine ./Set-up.exe
Replace ./
with another path if the file is not in your current path.
New contributor
If you don't provide full path (or relative path), wine will only search in "c:windowssystem32"
Just execute your file along with the path
# wine ./Set-up.exe
Replace ./
with another path if the file is not in your current path.
New contributor
New contributor
answered 6 mins ago
GummyBear21GummyBear21
101
101
New contributor
New contributor
add a comment |
add a comment |
Related to this issue>
This is regarding a wine bug https://bugs.winehq.org/show_bug.cgi?id=39403 described in this link
https://www.reddit.com/r/wine_gaming/comments/3vuuu9/steam_store_cant_connect_giving_me_black_screen/ . I want to show installing wine/windows steam games from The Linux Terminal is possible despite the black screen.This allows them to appear in your steam games Library.
There is one problem that must be fixed first and is shown is my work/ research:
In terminal issue:
wine steam.exe
you get this:
wine: cannot find L"C:windowssystem32steam.exe"
Wine wants any windows executable programs to be installed there for some reason. In my case steam.exe
Solution:
wine start /d "C:nameoffoldercontainingexecutable" example.exe
For example:
steamsetup.exe is installed in C:Program Files where i like it to be.
Therefore the magic key to issue a command for installing any windows game from the Linux terminal in wine steam is:
wine start /d "C:Program Filessteamfoldername" steam.exe -applaunch steamappID#
The steam app ID is found in the URL of the steam game's web page.
wine start /d - Sets the working directory for the executable.
I apologise for combining multiple subjects but to me this is my first post to help others and this is a complicated issue but I hope my idea can be used effectively in a post.
Thank you
NOTE For some very rediculous reason when i finish editing this post the windows command line bars shows only 1 at a time. They should have 2 for each typed. I can't explain this otherwise.
This doesn't answer the question asked. It appears that you intended this to be a new question regarding the links you provided. Please don't attempt to put questions in answers or answers in questions. Thank you. I recommend that you review askubuntu.com/help/how-to-ask
– Elder Geek
Oct 6 '18 at 20:44
add a comment |
Related to this issue>
This is regarding a wine bug https://bugs.winehq.org/show_bug.cgi?id=39403 described in this link
https://www.reddit.com/r/wine_gaming/comments/3vuuu9/steam_store_cant_connect_giving_me_black_screen/ . I want to show installing wine/windows steam games from The Linux Terminal is possible despite the black screen.This allows them to appear in your steam games Library.
There is one problem that must be fixed first and is shown is my work/ research:
In terminal issue:
wine steam.exe
you get this:
wine: cannot find L"C:windowssystem32steam.exe"
Wine wants any windows executable programs to be installed there for some reason. In my case steam.exe
Solution:
wine start /d "C:nameoffoldercontainingexecutable" example.exe
For example:
steamsetup.exe is installed in C:Program Files where i like it to be.
Therefore the magic key to issue a command for installing any windows game from the Linux terminal in wine steam is:
wine start /d "C:Program Filessteamfoldername" steam.exe -applaunch steamappID#
The steam app ID is found in the URL of the steam game's web page.
wine start /d - Sets the working directory for the executable.
I apologise for combining multiple subjects but to me this is my first post to help others and this is a complicated issue but I hope my idea can be used effectively in a post.
Thank you
NOTE For some very rediculous reason when i finish editing this post the windows command line bars shows only 1 at a time. They should have 2 for each typed. I can't explain this otherwise.
This doesn't answer the question asked. It appears that you intended this to be a new question regarding the links you provided. Please don't attempt to put questions in answers or answers in questions. Thank you. I recommend that you review askubuntu.com/help/how-to-ask
– Elder Geek
Oct 6 '18 at 20:44
add a comment |
Related to this issue>
This is regarding a wine bug https://bugs.winehq.org/show_bug.cgi?id=39403 described in this link
https://www.reddit.com/r/wine_gaming/comments/3vuuu9/steam_store_cant_connect_giving_me_black_screen/ . I want to show installing wine/windows steam games from The Linux Terminal is possible despite the black screen.This allows them to appear in your steam games Library.
There is one problem that must be fixed first and is shown is my work/ research:
In terminal issue:
wine steam.exe
you get this:
wine: cannot find L"C:windowssystem32steam.exe"
Wine wants any windows executable programs to be installed there for some reason. In my case steam.exe
Solution:
wine start /d "C:nameoffoldercontainingexecutable" example.exe
For example:
steamsetup.exe is installed in C:Program Files where i like it to be.
Therefore the magic key to issue a command for installing any windows game from the Linux terminal in wine steam is:
wine start /d "C:Program Filessteamfoldername" steam.exe -applaunch steamappID#
The steam app ID is found in the URL of the steam game's web page.
wine start /d - Sets the working directory for the executable.
I apologise for combining multiple subjects but to me this is my first post to help others and this is a complicated issue but I hope my idea can be used effectively in a post.
Thank you
NOTE For some very rediculous reason when i finish editing this post the windows command line bars shows only 1 at a time. They should have 2 for each typed. I can't explain this otherwise.
Related to this issue>
This is regarding a wine bug https://bugs.winehq.org/show_bug.cgi?id=39403 described in this link
https://www.reddit.com/r/wine_gaming/comments/3vuuu9/steam_store_cant_connect_giving_me_black_screen/ . I want to show installing wine/windows steam games from The Linux Terminal is possible despite the black screen.This allows them to appear in your steam games Library.
There is one problem that must be fixed first and is shown is my work/ research:
In terminal issue:
wine steam.exe
you get this:
wine: cannot find L"C:windowssystem32steam.exe"
Wine wants any windows executable programs to be installed there for some reason. In my case steam.exe
Solution:
wine start /d "C:nameoffoldercontainingexecutable" example.exe
For example:
steamsetup.exe is installed in C:Program Files where i like it to be.
Therefore the magic key to issue a command for installing any windows game from the Linux terminal in wine steam is:
wine start /d "C:Program Filessteamfoldername" steam.exe -applaunch steamappID#
The steam app ID is found in the URL of the steam game's web page.
wine start /d - Sets the working directory for the executable.
I apologise for combining multiple subjects but to me this is my first post to help others and this is a complicated issue but I hope my idea can be used effectively in a post.
Thank you
NOTE For some very rediculous reason when i finish editing this post the windows command line bars shows only 1 at a time. They should have 2 for each typed. I can't explain this otherwise.
edited May 27 '17 at 9:43
answered May 27 '17 at 9:12
Miles Andrew2Miles Andrew2
11
11
This doesn't answer the question asked. It appears that you intended this to be a new question regarding the links you provided. Please don't attempt to put questions in answers or answers in questions. Thank you. I recommend that you review askubuntu.com/help/how-to-ask
– Elder Geek
Oct 6 '18 at 20:44
add a comment |
This doesn't answer the question asked. It appears that you intended this to be a new question regarding the links you provided. Please don't attempt to put questions in answers or answers in questions. Thank you. I recommend that you review askubuntu.com/help/how-to-ask
– Elder Geek
Oct 6 '18 at 20:44
This doesn't answer the question asked. It appears that you intended this to be a new question regarding the links you provided. Please don't attempt to put questions in answers or answers in questions. Thank you. I recommend that you review askubuntu.com/help/how-to-ask
– Elder Geek
Oct 6 '18 at 20:44
This doesn't answer the question asked. It appears that you intended this to be a new question regarding the links you provided. Please don't attempt to put questions in answers or answers in questions. Thank you. I recommend that you review askubuntu.com/help/how-to-ask
– Elder Geek
Oct 6 '18 at 20:44
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f864649%2fubuntu-wine-cannot-find-c-windows-system32%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
Where is
Set-up.exe
located?– muru
Dec 26 '16 at 10:51
@muru I created a folder on my desktop and put it there. Shud I put it in a specific place instead?
– laukok
Dec 26 '16 at 13:06
2
then try running
wine ~/Desktop/folder-name/Set-up.exe
– muru
Dec 26 '16 at 15:14
@teelou Please read the Wine Guide in askubuntu.com/questions/316025/… to know how to execute file outside of the Wine default environment
– Luis Alvarado♦
Feb 18 '17 at 15:49