Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
384 views

Cannot Install MSI With Custom Actions To Non-Admin With Non-ascii Characters in Username

This is a problem I have been battling with for a few days and am now at my wits end. I am creating an MSI with Wise Installation Studio but I would bet it could be repro'd with any MSI authoring ...
2
votes
4answers
964 views

How can I debug a local IIS service with Visual Studio running as a non-Administrator user?

I have installed Visual Studio 2008 and am running it as a non-Administrator user. I have a Web Application project I am developing and would like to debug it using Visual Studio. I can compile and ...
1
vote
3answers
46 views

How to use tinymce in django for non admin pages

I have been reading this installation guide to install tinymce with django. Firstly it has not worked and secondly it seems to be linked only with the admin account. Moreover other blogs about tinymce ...
1
vote
1answer
205 views

Creating Firewall rule for a process running in a Non-admin user account

I have a basic requirement - to run my application smoothly on Windows by creating firewall rules when prompted, that has windows firewall turned-ON. When I log in to my system as an user with Admin ...
1
vote
0answers
307 views

Cannot run as a non-admin impersonated user - access is denied

I do impersonation of a non-admin user account in an app that is running as an admin user (using LogonUser(), DuplicateToken() and WindowsIdentity.Impersonate() functions). Since this user account is ...
1
vote
1answer
235 views

How to run a command on a remote Windows system as a non-admin user with WMI?

I have a script written in Visual Basic that starts a process (given to the script as an argument) on a remote system (again, given as an argument) using WMI. This script works fine when using an ...
1
vote
3answers
442 views

File handling with non-administrative user

I've been testing my application to see how well it works when run by a non-administrative user, and I have found problems with file handling. I am getting an UnauthorizedAccessException when trying ...
0
votes
1answer
31 views

Where to store configuration data for universal access by admin and non-admin alike?

I can tell you where non-admin's aren't allowed to write to: Environment::GetFolderPath(Environment::SpecialFolder::ApplicationData) + "\\Config.ini"; ...
0
votes
0answers
180 views

Calling WMI Win32_Process.Create() as a non administrator

Calling Win32_Process.Create() as a non-admin user causes an "Unknown Failure". The process being created is non-interactive and the appropriate rwx permissions on the program being invoked are set. ...
0
votes
0answers
39 views

ErrorOk dialog while cancelling setup at runas admin dialog

I migrated my project into Installshield12 from Developer7, which was developed in Installscipt MSI. The main cause to migrate the product is "To set Runas Admin Option to my product to install for ...
0
votes
1answer
166 views

How does COM CoCreateInstanceEx try to load types (for non-admin win user)?

I have a very complicated problem that occurs only for non-admin windows user. I run a script S that resides on the desktop and calls a function in a C++ dll. Then the flow is as follows: My C++ ...
0
votes
1answer
408 views

Wix - install as non-admin and add to GAC

I am writing an installer using WIX, and I need to add a .dll file to the GAC. I use: <File Id="my.dll" Name="my.dll" DiskId="1" Source="..\MyResources\" KeyPath="yes" Assembly=".net" /> ...
0
votes
1answer
830 views

Register DLL (ActiveX) for Non-Admin user

I try to register dll (ActiveX) for non-admin user using MSI. To create registry settings I have register the dll in admin mode, then exported the relevant registry entries and renamed all HKLM to ...
0
votes
3answers
230 views

Debug in VS as non-admin

I'm doing some WinForms development, running XP and VS 2005 (ancient, I know). I'd like to make sure my application can run without admin rights, but I'm too lazy to try to run VS as a non-admin, and ...