The administrator tag has no wiki summary.
-2
votes
0answers
10 views
Are there other ways to create a shortcut? [closed]
So here's the situation: I would like to run an app on my removable drive but the administrator has restricted it. So what i did was to right click on the desktop-new-shortcut and a path window ...
0
votes
0answers
20 views
windows task scheduler doesn't open web browser
My task runs a .bat file that contain a action that run some .jar file.
When I run manually the .bat file the .jar works perfectly and open a web browser .
But when I ran the .bat file from the ...
0
votes
1answer
21 views
How do you in Applescript cp a file to a folder with a variable in name and or prompt for credentials without shell script?
I have an issue where I need it to prompt for admin credentials if needed and cant find a workable solution.
set foo to computer name of (system info)
set p to (path to desktop)
set ...
0
votes
1answer
21 views
administrative abilities using OAuth 2
One of my clients (state public defenders office) has asked me to write a system to update people's (laywer's) calendars (google for govt, calendar) on a daily basis, from data pulled from the Circuit ...
1
vote
0answers
11 views
Add an invited guest as an administrator to an event using Open Graph API
I'm trying to add a guest as an administrator using the Open Graph Events API. Don't see this as a feature in the documentation. Anyone try this or know if this is even possible?
0
votes
0answers
15 views
What kind of applications need to be run in administrator mode?
I need to develop an application to run in Windows Server 2012 that uses a MySQL database and I was considering developing a Windows Store app, but in the answer for this question at SU, Can Windows ...
0
votes
1answer
82 views
Run app from .bat file with administrator rights from startup?
I am trying to use a batch file to run a list of programs from startup. Windows automatically logs into a standard account. How can I run the .bat at startup with admin rights, without prompting for ...
1
vote
2answers
43 views
Certain users edit database
I was wondering if there was a way of going about having only certain users able to delete tables from an sql database using PHP, for example only managers are allowed to add and delete whereas others ...
-1
votes
1answer
150 views
FreeSSHd and Powershell Administrator access [closed]
First, here is the scenario that I have.
We are employing a consultant. His working OS of choice is Linux and/or Mac OS X. All of our boxes are Windows, and the box (well, one of the boxes, but ...
1
vote
2answers
64 views
Stuck with Visual Studio 2010 in Administrator (elevated) Mode
There are many posts that tell you how to run Visual Studio 2010 as Administrator.
I will probably be very ashamed when I find my answer but...
My problem is that I can't start Visual Studio NOT ...
-1
votes
0answers
19 views
The user Administrator connected from MYIP but failed an authentication attempt due to the following reason: The account does not [closed]
I did setup VPN on my windows server 2012
Now i am trying to connect my remote server via my local computer but i am getting the error below
Apperantly i have to give Administrator VPN access ...
0
votes
0answers
30 views
Active Directory role provider only works for administrators
I have implemented a custom Active Directory role provider for my forms-based application so that my application will recognise what AD groups people in the organisation are in.
When I test it on my ...
0
votes
1answer
50 views
Application add to startup ( need administrator rights to start app )
I have a C# application and I want to add this application to start-up. I use:
RegistryKey Key = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Run", true);
...
1
vote
0answers
25 views
svn+ssh, pageant and AUC administrator privilidges
I'm facing a strange problem using svn+ssh and pageant.
My system (W7 x64) is configured using maximum UAC protection.
Case 1
- Starting pageant and adding my keys.
- Accessing svn archives using ...
2
votes
2answers
345 views
How in Delphi can I run a command with administrator privileges?
I am trying to stop mysql from Delphi XE2 on Win 7. I have written some code based on something I found on the web for Delphi 7, that was supposed to do this, but it doesn't work:
function ...
0
votes
0answers
30 views
Run two instances of installer, one as admin the other as user
This question is close to my own:
How to Launch an Exe at User Level from a Higher Level
My installer runs elevated ( manifest file- "requireAdministrator" ).
I want to launch another instance ...
0
votes
1answer
356 views
Vb.net program login using local admin account
I write a program which need user login using local admin account.
But local admin account name is different for every PC, so I cannot hard code the user name.
Below code only retrieved the user in ...
0
votes
1answer
203 views
Batch file - Run as administrator, if not delete batch file?
Hi I have made a batch file which I need to run as administrator. For that purpose I use this script, which I took from here (StackOverflow).
But what I want, is if the user choose not to run as ...
0
votes
0answers
42 views
How to disable the deviceadministration on a android device
I wanted to know is there any way in which one can also make the checkboxes uneditable (one shown with red circle) for an application installed as deviceAdministrator.
-1
votes
2answers
44 views
Only give access to one application(full screen) [closed]
I am considering using tablets for use with clients at my job and I was just wondering if there is anyway to lock users into one application. Just for theoretical purposes the application could be as ...
1
vote
1answer
51 views
Run windows application for another user
I'd like to run a windows application in the context of another user. I have an administrator and several user accounts in one machine and I would like to have the administrator start certain ...
0
votes
1answer
87 views
Embed manifest to exe failing with argument invalid
I want to add a manifest to .exe file so it stops asking users to run as administrator in Windows 7.
I followed this tutorial which seems to do exactly what I want to accomplish except I get this ...
0
votes
0answers
97 views
Restrict access to a folder to one administrator account only in windows
We are dealing with an issue with an outsourcing company that keeps our IT infrastructure up and running.
We do have some critical applications (and data) on our Windows 2008 R2 server.
Both ...
0
votes
1answer
133 views
Start process as system user
I was trying to read some values from some registry keys with code (c#) on windows and I found out that the reason why I was not able to read the values was because the admin user did not had ...
1
vote
1answer
173 views
C# add key to registry to LocalMachine fails
I'm trying to add a key to LocalMachine in registry. I'm using this code:
System.Diagnostics.Debugger.Launch();
RegistryKey key = Registry.LocalMachine.OpenSubKey("SOFTWARE", true);
...
0
votes
1answer
49 views
SQLite Administrator concatenate results
I have this table
id valor
1 4
1 3
2 2
3 3
3 1
so, I need a consult that the answer be
id valor
1 4,3
2 2
3 3,1
I work with SQLite ...
-1
votes
1answer
145 views
VB6: Check if process has admin right [closed]
I want to check if a program is run with admin rights.
But I am completely unsure how I should do this.
Thank you for any help!
1
vote
2answers
569 views
Adding manifest for admin rights request
I have an application that writes program settings to the windows registry that is absolutely necessary so.storing to a file is not an option.
To simplify this, I would like to give an "admin ...
2
votes
1answer
296 views
Meteor - Check if user is logged in as administrator (Client - Side)
I'm currently developing an app which needs users and administrators. What I do right now is, I create an admin account on the client with username 'admin' and a default password that should be ...
0
votes
1answer
110 views
Program not asking for administrator rights, while already using a manifest
My program is not asking for administrator privileges while I do have a manifest file included in my project, I loaded it correctly, it just simply doesnt want to fix the error I have in my code. I'll ...
0
votes
3answers
2k views
Batch Script to Run as Administrator
I'm writing a client/server checking program but it needs to run as Administrator.
I want this to run silently on my network and users, and I don't want the "Run as" Administrator" prompt.
Is there ...
1
vote
2answers
91 views
How to overwrite the asking for authentication when running an admin shell script in Apple Script?
I'm wanting to make a simple program that runs each time on login behind the UI. In my applescript I'm running a sudo command that requires admin authentication. Is there a way to overwrite the need ...
0
votes
1answer
63 views
Issue with group/domain controls and admin rights
Server: Windows Server 2003
PC: Windows XP (Laptop)
Issue: The PC in question cannot get administrator rights even when logged on as the top level administrator account, or any other admin account. ...
3
votes
2answers
209 views
How to get administrator group name in different languages
I'm developing a installer using Inno Setup, and I need to create a windows user with administrator privileges, I can do it normaly using this command: net localgroup administrators USER /add
But ...
0
votes
0answers
325 views
Adding JQuery to Sharepoint Foundations 2010 (404 not found) [closed]
I'm having trouble adding the jquery library to my sharepoint site.
I closely followed these instructions:
http://blogs.msdn.com/b/yojoshi/archive/2010/06/17/using-jquery-with-sharepoint-2010.aspx
...
0
votes
0answers
78 views
Task Scheduler not working on windows?
I am add a task on task scheduler on windows , It is not working properly. My task is being invoked by batch file in which it monitors some service and send a mail regarding that. When I execute the ...
0
votes
2answers
116 views
How can i change server administrator name and password
I need to change the local administrator name and password on servers to those that are contained in a .csv
The CSV file contains a list with all the information in it whereby the Server, ...
0
votes
0answers
60 views
Is administrator rights required to add a program to startup? [closed]
Using Delphi is it possible to create an application that runs on startup (using the registry) without administrator rights?
Thanks
0
votes
0answers
59 views
Why do I get Access Denied when accessing a remote path as local administrator?
I have a Windows-xp-sp3 virtual machine, with configured NAT, disabled firewall, and ping-able ip address.
I'm trying to access \\<vm-name>\c$ from my computer.
I entered the ...
-1
votes
1answer
305 views
How to get rid of run as administration requirement in Windows 7 for Visual Studio [closed]
How to get rid of run as administration requirement in Windows 7 for Visual Studio and command prompt? There was one setting on user console or something (one of my ex-colleague showed me in the ...
1
vote
1answer
561 views
How to programmatically set a user as the Site Collection Administrator in SharePoint
I am working on a SharePoint 2013 site. I'm trying to set a user as the Site Collection Administrator using the following code:
public void SetUserSiteCollectionAdmin(string siteUrl, string ...
0
votes
1answer
614 views
ClickOnce application Settings vs Administrator Rights (Visual Studio, VB.NET)
In Visual Studio (VB.NET), what's the diference between enabling Application ClickOnce Settings, and adding administrator rights to my application (Using application UAC Settings)?
I know that i can ...
-3
votes
1answer
275 views
Run any application admin mode programmatically c# [closed]
I need to run my .exe with admin privileged. I searched google and found piece of xml which I need to put in app.config file. here is the xml:
<?xml version="1.0" encoding="utf-8" ...
-1
votes
1answer
153 views
Internal Server Error after administrator password change… (Mac OSX & PHP)
Here at work I recently adopted a rather undocumented Mac OSX/PHP web server. The "administrator" account password was unknown, and another technician reset it before handing the server over to me. ...
-1
votes
2answers
40 views
I cannot be added as a developer or administrator to an app page [closed]
The current administrator to a Facebook app is trying to add me as a developer and/or administrator of the app. While typing in my email on Facebook, Facebook claims that I am not a Facebook user even ...
2
votes
0answers
95 views
MEF parts on shared folder and “run as administrator”
I build an C# app that use MEF parts as plugin. These part are loaded when my main application start. My app as above line in App.config for allow load MEF parts from a network shared folder.
...
1
vote
1answer
102 views
Restrict Administrator to Stop Service in VB.net 2010
I've observed that some services of my security software are not able to stop even from the administrator account. Star/ Stop option of those services are disabled.
I want to write that type of ...
0
votes
1answer
186 views
ShowWindow Function Doesn't Work When Target Application Is Run As Administrator
I am writing a program that shows/hides the window of some target application. I was testing it out earlier and noticed something strange. If I run the target application as Administrator ...
0
votes
0answers
188 views
PowerShell get services and web-services running by adminstrator
I wrote the following script to get schedule tasks running by administrator.
Any idea on how to also find the services and web-services running by the same administrator?
$servers = "machine123"
$ST ...
0
votes
2answers
59 views
How to determine what prevents an app from running non-elevated (non-admin)
Is there a way to detect what prevents an app from running in a non-elevated state? When we run our application with elevated permissions it operates without any problems. Running in a non-elevated ...



