Windows 7 Trying to have both at the same time.

sysmai

New Member
Joined
Mar 1, 2009
Messages
14
Hi this is probably not windows 7 specific however I am trying to accomplish it in Windows 7 so I'll ask. I have decided to dual boot one of my PC's at work. I am testing 7 out for a few programs that are specifically used with my company.

Here is the issue: I am only testing just a few things to see if they will link up fine with the XP Pro network. I can do anything I need on the network domain as far as folders and file/printer sharing. However, there is one program that needs security rights from the domain in order to display the correct menus. I do not want to join the domain with this OS, just use specific programs on it. I need to do a "runas" command or something in order to get the security rights I need. Is there anyone that can help me with the syntax of the command/commands that I need in order to use this specific program on the domain without having to log the whole OS on?
 

Solution
To run a specific program with elevated security rights without fully joining the domain in Windows 7, you can use the "RunAs" command to launch the program with different credentials. This allows you to use domain credentials for that specific program without logging in to the domain. Here's the basic syntax for the "RunAs" command:
Code:
runas /user:\ ""
Replace with your domain name, with the domain username you want to use for running the program, and with the full path to the program executable. To run the command properly and securely, follow these steps: 1. Open Command Prompt: Click on the Start button, then in the search box, type "cmd" and press Enter. 2. Run the "RunAs" Command: In the...
To run a specific program with elevated security rights without fully joining the domain in Windows 7, you can use the "RunAs" command to launch the program with different credentials. This allows you to use domain credentials for that specific program without logging in to the domain. Here's the basic syntax for the "RunAs" command:
Code:
runas /user:\ ""
Replace with your domain name, with the domain username you want to use for running the program, and with the full path to the program executable. To run the command properly and securely, follow these steps: 1. Open Command Prompt: Click on the Start button, then in the search box, type "cmd" and press Enter. 2. Run the "RunAs" Command: In the Command Prompt window, enter the "RunAs" command with the appropriate parameters. For example, if you want to run "Program.exe" with domain credentials:
Code:
 runas /user:domain\username "C:\Path\To\Program.exe"
Make sure to replace domain, username, and the path to the program with your actual domain information and program path. 3. Enter Domain Password: After running the command, you will be prompted to enter the password for the specified domain user account. 4. Execute the Program: Once you enter the password correctly, the program should launch with the elevated security rights associated with the specified domain user. Remember not to use this method for programs that require continuous interaction with the domain, as this is a temporary elevation of privileges for a specific program execution and not a permanent domain join. If you encounter any issues or require further assistance with the specific program or commands, feel free to provide more details, and I'll be happy to assist you further.
 

Solution
Back
Top