Can't Access The Administrator Account

Jul 15, 2009

I created a vb application and I'm trying to deploy it. However, it needs to be run as administrator, which is not ideal as several machines I'm deploying it to can't access the administrator account. The odd part is that the development environment isn't on an administrator account. When I double click the compiled executable it runs fine. When I right click and choose Run As Current User the program crashes and gives me the same error I got when trying it on the target machines(without access to the administrator account.)

[Code]...

View 13 Replies


ADVERTISEMENT

Log In As Local Administrator Account?

Aug 11, 2010

In order to install a windows app in user's laptop, I need to log in as local administrator account. To install app, there are two option:

Every one
Just me

Which option should I select in admin account? If I select "Just me", once admin log off and user log in, does user can run app?

View 2 Replies

VS 2008 Administrator Account / User Rights

Aug 14, 2009

While testing my software a friend of mine got the following Error: "Access to the database file is not allowed. [File name = ...etc..." I found out that this has to do with the user rights in Vista (perhaps also XP). How can I solve this?

View 3 Replies

Microsoft Access Database From VB6 - Vista - Run As Administrator - Different Date / Time Stamp?

Mar 27, 2010

I have a VB6 application which has been running succesfully for years under XP, however under Vista data loss has been observed.It appears that if the app is run 'as administrator' then it connects to the correct database file, however if the app. is not run as administrator then vista creates a copy of the database (no idea where) - hence I end up with 2 versions of the database.

In fact I can delete the database file entirely and the app. still works fine because vista is using it's own copy - the problem is how do I back up this 'vista copy' when I can't find it (search doesn't find it).

View 7 Replies

Allow Administrator Rights To StartupPath Only, On A Non Administrator O.s?

Nov 26, 2009

i currently have a project that needs to edit a few files in the startuppath folder. on a non administrator o.s., if my app. is installed in ( c:program filesmy crappy little app ), i cannot write to those files. in win7, it does not even ask for administrator approval, just the option to save to my documents.. this can be quite a hassle to work with, specially on closing the app, since i have quite a few files that need to be updated.

View 7 Replies

Program Will Access Db Under Any Account?

Mar 26, 2012

I am creating an application in vb.net that accesses a database on a drive that other students do not have access to. The program will not run correctly if it is run under one of these students accounts. How can I make it so the program will access the db under any account?

View 2 Replies

.net Log In With MS Access 3 Attempts Then Account Will Terminated/lock?

Mar 15, 2012

I need to be able to terminate/locked the account in vb.net if the user input wrong username/password in my Log In form like 3 attempts is good. and be able to enabled the account also as an Admin.

View 12 Replies

Access ViewState Across Other Pages With Account And Password?

Aug 17, 2010

I have a website [URL]

have a login.aspx form and we can access with user and passs

but i want i can from site2.com.vn call a function with username,pass and use viewstate to access site1.com.vn without press user and pass

View 1 Replies

Connecting To A Access Database Via Account Name And Password?

May 9, 2009

I'm trying to use two different methods of connecting to a database to edit data, the declaration below is working:

Dim rsConn As ADODB.Connection
rsConn.Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" _
& Application.StartupPath & "VFMS_DB.mdb;" _
& "Jet OLEDB:System Database=Security.mdw", "Ads", "1234")

but now I want to do the same thing with the declaration below but I keep getting the message "Not a valid account name or password.

Dim conn As OleDbConnection
conn = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" _
& Application.StartupPath & "VFMS_DB.mdb;" _
& "Jet OLEDB:System Database=Security.mdw;Database Account=Ads;Database Password=1234;")

I pretty sure it's because of this ;Database Account=Ads;Database Password=1234; not being correct. I tried ;User ID=Ads;Database Password=1234; and also to make it look like the first statement but neither worked.

View 4 Replies

Run Windows Explorer With An Admin Account While Logged In With A Non Administrative Account?

Sep 12, 2010

Does anyone know how to run windows explorer with an admin account while logged in with a non admnistrative account? i want to be able to open up an admin share on a remote host with windows explorer instead of iexplorer. I tried some code I found on the net to impersonate but it didn't work.

View 2 Replies

Write A Code To Access An Email Account And Save All The Attachments In A Particular Folder?

Jun 2, 2012

I have an email account. I need to write some code that looks for any new email message on it and in case there is, it saves the attachment in a particular destination.

View 5 Replies

Creation Of A New Account (sort Of A Personal Account)

May 17, 2012

I am currently working on a stock market monitoring application. how to create a new portfolio(sort of a personal account) for each user that accesses the system such that 2 different users do not have the same portfolio. I am making use of SQL server for my database.

View 3 Replies

"Access Is Denied" Using Process.GetProcesses Even Though Administrator?

Oct 13, 2009

I am having a problem with this:

Dim ProcessList() As Process = Process.GetProcessesIf ProcessList.Length > 0 Then Dim ProcessListIdx As Integer For ProcessListIdx = 0 To ProcessList.Length - 1 If Not ProcessList(ProcessListIdx).HasExited Then <-- this line throws the error With

[code].....

View 11 Replies

Windows Service Running Under A Network Account Is Calling An EXE And Running It Under System Account?

Aug 27, 2010

We have a windows service running under a network account that calls and runs an ActiveX exe. The exe is running under the local system account, not the network account of the service.

View 1 Replies

Process.start Access Denied - Create A User Account And Modify It's Registry Before The User Logs On The First Time

May 31, 2012

I thought I postet this yesterday but I can't find my thread so if this is a duplicate please point me at the original one. Background: I need to create a user account and Modify it's registry before the user logs on the first time. Creating the account is done by using the Winnt provider (works great). To create the profile I'm trying to use Process.start to launch a process as the newly created user. With the use of loaduserprofile property the users profile gets created and i can do my regwrites without problem.

[Code]...

View 11 Replies

Add Each Account Number To List1 So Now The Account Number Is Associated With The ListBox?

Apr 26, 2009

Ok this is what I'm stuck on:I have 2 ListBoxes and 2 Lists, let's call them ListBox1, ListBox2, List1 and List2.List1 needs to be associated with ListBox 1, and List2 with ListBox2 I loop through a bunch of accounts, add them to LixBox1 at run-time.During that loop I add each account number to List1 so now the account number is associated with the ListBox index number which is right.Now when I double click one of the accounts in ListBox1 it is added to ListBox2 (but it still remains in ListBox1), and the same index of List1 added to List 2, now the account in ListBox2 is associated with the account number at the same index in List2 you see where I'm going with this?The issue wtarts here.When I double click an account (let's say the account at the first index) in ListBox2 it should be removed from the list, so now I remove the index from List2 since it's no longer needed, but now you know what's happened right? ListBox2's List indexes have all decremented by 1 because I just removed an item from the beginning of the list, but List2's indexes have stayed the same (at least that's how it appeared when I tested it).

So basically whats the best method for keeping things in reference? I was told about list boxes in another thread of mine, but is it really the best way to go about this, I can't seem to keep everything linked together reliably.

View 10 Replies

Run A .vbs Script As An Administrator

Mar 26, 2012

I have a script I have created and If i just call it with process.start, it fails.

if i right click the script, and select run as administrator it works.

Is there a programaticall way of doing this with process.start?

Right now I have

Process.start("c:test.vbs")

View 4 Replies

Run Shell() As Administrator?

Nov 14, 2009

I have an update app, which can be updated itself by another update app (so, the second app is an updater of the main updater). Both apps must have administrator permissions because of writing in the Program Files folder. Is it possible that when the main updater is running (under administrator rights) it can use Shell() to let the second updater run with administrator rights without a UAC confirm dialog popping up again?

View 3 Replies

App Needs Administrator Priviliges To Save To Db?

Jan 30, 2010

i made one form database app and make it full trust app then i run it on non administrator user and when i try to save data it gives me exception but works very well on administrator user !!can i make the app works well on non administrator user?

View 4 Replies

Getting Administrator Privileges Error

Sep 1, 2010

I am using following code to get a directory of files with a particular extension. It throws an error that you donot have administrator privileges.[code]...

View 3 Replies

Local Administrator On A Workstation To Run VB6?

Sep 22, 2010

I would like to know if it is necessary to be Local Administrator on a Workstation to run VB6 I mean, just run VB6, write code and compile it.I do not mean to register DLLs, write in registry, etc.My question is just asked at the VB6 application level.

View 8 Replies

Opening A File As Administrator?

Aug 21, 2009

I am developing an Excel workbook at work and I've got a problem. I'd like to save information entered in the workbook and save it in another one (called List, for example purposes), using a macro. The problem is that the file in which I want to save the information is located on a server. When people open List.xls, it's Read Only. So, when my macro executes, it opens a Read Only workbook...I'd like to do "Open As", just like you could do by right-clicking on any file in Windows XP. The result would be that the macro would log on as administrator only to open List.xls, write in it and save it under the same name.

View 3 Replies

Run Application In Administrator Mode

Mar 24, 2009

I am developing an application in vb.net2008,Sql Server 2005But there is a problem while running my application on Customer Machine. It throws some security related issues Access Denied or so on....And also my application does not run in Windows Vista.I am changing in my app.manifest file like this ....

[Code].....

View 1 Replies

Run ClickOnce Application As Administrator

Jun 28, 2011

I have a vb.net clickonce application that will be used by low-level personnel with no administrator accesses. However, the application itself needs to save files to a folder on the server that is hidden and only allows read/write access to administrators. I need for these users to be able to interact with this folder using the application without giving them the ability to browse to the folder on their own. I've tried using several impersonation techniques, none have worked.

[Code]...

View 2 Replies

Run External Exe With Administrator Privilage?

Jul 31, 2009

I want to make a VB program that able to run another exe with administrator credentials. The problem is I have a user log in to pc which has XP OS, and he log in using AD account as user, the program he want to run (from another company) require that he should have administrator privileges.

I want to make a program that when he double click on it it will run that program c:companyfile.exe with administrator privileges. I search the internet and most of what I found is very lengthy code, i read the below if a fast way since this is new to me.

[Code]...

View 13 Replies

Running A BAT File As Administrator

Apr 19, 2010

I have a program I am making in VB.NET [ 2010 ], and I can get the BAT file I want to run start, but it's not in 'Elevated Mode' - Is there a way to accomplish this easily? This is the code I have to run the BAT file, which needs to be 'Run as Administrator':

[Code]...

View 27 Replies

Running Program As Administrator??

Nov 14, 2010

i have a visual basic program, and it has a button where, when clicked:

Process.Start("Mover.exe")

Now that works fine, except mover.exe needs to be run as administrator to do its job properly,

is there any way that the vb program could run it with admin privelages?

View 6 Replies

Set Administrator Privileges Selectively?

May 15, 2010

how can i set administrator privileges selectively in my application depending on whether it needs to write a registry value or not?my app needs the elevated privileges once, then each subsequent execution needs standard permission.

View 2 Replies

Shell A Program As Administrator?

Mar 3, 2010

I am writing a setup program that runs as administrator. If I shell a program from the setup program will it also run as administrator?

View 6 Replies

ShortdateFormat Of Application Changes If Run As Administrator

Feb 14, 2011

I have a VB.net application that has datagridviews and date control in windows forms. I have the short date format set in the date controls and short date format is some columns of the datagridview.If I run the application on server 2008 it picks up the wrong short date format. I have the server 2008 regional settings as "en-AU" but for some reason the app picks up en-US as the current culture.If I run the app as the Administrator it seems to pick up the proper culture.[code]

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved