The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
4answers
44 views

Check user permision in php

How can I create a PHP function or class that checks if a user who is a half-admin (set from a MySQL database) has some rights such as creating a new page, editing, or deleting? I need a function that ...
2
votes
1answer
51 views

Batch ~dp0 doesn't work with admin rights?

I have a batch file which looks like this: set OWNPATH = %~dp0 for /r %OWNPATH% %%F in (*.ocx) do ( echo %%F ) It correctly lists all OCX files in the same folder when I start it, but lists the ...
0
votes
1answer
29 views

Program runs as SYSTEM still not able to edit hosts file

I'm trying to edit the hosts file while my program is started as "NT AUTHORITY\SYSTEM" with psexec, and I still get UnauthorizedAccessException. I thought that SYSTEM should be able to edit hosts file ...
0
votes
1answer
113 views

Add program to autorun without admin rights. RegSetValueEx() returns 5 (ERROR_ACCESS_DENIED)

I want to add my program to autorun. I know there is a registry key for it that doesnt require admin rigths to edit it. It's HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run. I'm ...
0
votes
3answers
328 views

Error in running a batch file from VB Script

VB scripting is completely alien to me but today landed in a situation to write a small one. I need Admin rights to run my .bat file. So I am trying to elevate to Admin rights if not have them. With ...
1
vote
1answer
64 views

Netbeans platform installer runnable without admin rights?

I have bundled a netbeans platform based application (including a jre, thanks geertjan !) with the fabulous netbeans installer. When I run the installer on windows (tested it on 7), the system asks ...
7
votes
2answers
297 views

Create outlook addin without need for admin rights

I wrote an outlook addin with some basic functionality to access a webservice and execute methods on it. Everything works like a charm, except that I can't seem to get rid of the fact that users need ...
2
votes
1answer
167 views

How To Restart IIS without Admin Rights in C#

What code do I need for a C# application to restart the user's IIS while the user does not have Admin rights?
-1
votes
1answer
171 views

Execute C# Application as an Administrator in Limited User Account

I developed an application which updates itself like below I will send the Signal to the Client Listener from Admin PC to update Client Application Listener will Stop the Client Application and then ...
7
votes
3answers
2k views

.NET Start Process with higher rights

I am trying to execute a program with admin rights through a C# application, which gets invoked with user rights only. Code ProcessStartInfo psi; try { psi = new ...
3
votes
1answer
438 views

How I can create installer which can run ONLY with administrative rights? (Visual Studio 2010)

I have project written in C#. I create install project for this project, and I really want that this setup can run only if user has administrative rights. How I can do this? I tried to add "Launch ...
2
votes
0answers
701 views

Error 1730 (needs admin rights) when uninstalling chained msi on Vista/Win 7

I have created an installation using basic MSI in Installshield 2012. I am using the chained MSI technology (supported in Windows installer 4.5 and onwards). My installation is structured with a ...
2
votes
2answers
1k views

Run elevated process

I am trying to run a cmd command with the following code: ProcessStartInfo cmd = new ProcessStartInfo("cmd.exe"); cmd.RedirectStandardInput = true; cmd.RedirectStandardOutput = true; ...
1
vote
0answers
518 views

run Java Web Start applications in non admin user accounts

I have a java web start applications that perfectly works on my pc. The problem is that this app needs to be run on machines where the user does not have admin rights. For linux everything works fine ...
1
vote
1answer
829 views

How to check admin rights C#

How to check is my application starts with admin rights? I use this code now: public static bool IsUserAdministrator() { //bool value to hold our return value bool ...
2
votes
2answers
2k views

Free deployment for Visual Basic 2010 Express application that requires admin rights

I'm using VB.Net and Visual Basic Express 2010. I'm looking to create a single .exe install file to distribute my application. But in order for my application to work, I need to mark my app. as ...
2
votes
2answers
534 views

Visual Studio produced MSI Installers, Program Files, and Administrator Access

I have a working program that I am ready to generate an MSI from for distribution. The default install location is C / Program Files / Foo / Bar , and that's where I'd prefer it install. However, ...
0
votes
2answers
350 views

Which WPF parts need Local Admin rights to work proberly?

I develop an application on WPF. I have recognized that some parts of the program do not work without Local Admin rights. On another question it is said that writing to event log was causing the need ...
0
votes
1answer
919 views

Sharepoint Application not running

I have this sharepoint application which was running absolutely fine. The Application Pool Identity was set to configurable for this sharepoint application. But from yesterday i have been getting the ...
3
votes
2answers
719 views

Server 2008 Cannot Set User Rights

I attempted to do some Win32 stuff in C# 3.5 to get elevated User Rights for a console app. I develop on Visual Studio 2008 SP1/GDR and things work fine when run under the debugger. Things also work ...
1
vote
2answers
1k views

How do I install a windows service that runs as an administrator?

I've written an installer that installs a windows service (A) that needs to start/stop another service (B). However, when A tries to start/stop B, I get this exception: ...
7
votes
2answers
684 views

How elevate and get admin rights on-demand in a .NET application?

I have an .NET application which is run with default rights as the current user, then at some point I need to perform an action which requires admin rights. How can I get admin rights on-demand in a ...