VS 2010 WMI Code To List Remote Share Permissions?

Apr 30, 2010

I've been struggling for hours now to get some working code to list the share permissions of a remote share. I've got WMI code which uses win32_share which lists the shares and path and it works great. I"m now trying to add in a routine to get the share permissions as well.

I've searched just about every site for some sample code and can only find some C# (I think) code.

[Code]...

View 1 Replies


ADVERTISEMENT

Retrieving Remote Share Permissions - .net 2010?

May 7, 2010

I can seem to find is vbs code for retrieving remote share permissions using WMI.I've tried to convert this code to run on vb.net but don't seem to be getting anywhere.should I try to convert the below code or are there other methods I can use to retrieve the permissions. I can easily get the list of remote shares using win32_share but not the permissions

Code:
strComputer = WScript.Arguments(0)
Set objWMI = GetObject("winmgmts:\" & strComputer & "
ootcimv2")

[code]....

View 1 Replies

Retrieving Remote Share Permissions - VB 2010?

Jul 6, 2009

I've search tons of .net pages and all I can seem to find is vbs code for retrieving remote share permissions using WMI.I've tried to convert this code to run on vb.net but don't seem to be getting anywhere.hould I try to convert the below code or are there other methods I can use to retrieve the permissions. I can easily get the list of remote shares using win32_share but not the

View 4 Replies

Reading Remote Share Permissions Using WMI?

May 1, 2010

I've been struggling for hours now to get some working code to list the share permissions of a remote share. I've got WMI code which uses win32_share which lists the shares and path and it works great. I"m now trying to add in a routine to get the share permissions as well.I've searched just about every site for some sample code and can only find some C# (I think) code.

string machine = "MachineName";
ConnectionOptions co = new ConnectionOptions();
co.Impersonation = ImpersonationLevel.Impersonate;
co.EnablePrivileges = true;

[code]....

View 3 Replies

VS 2008 - How To Edit Share Permissions (not NTFS)

Jul 8, 2009

I need to build an app that can create a network share and give it full read/write permissions to everyone.
I have this code to create/delete network shares: [Code] But it only changes the NTFS permissions, not the share permissions. I'm running Windows 7 RC (64-bit) using Visual Basic 2008 Express. Does anyone have any ideas on how to change the share permissions, not ntfs?

View 1 Replies

VS 2008 Creating A User And Share Permissions?

Mar 25, 2010

I'm creating an application that works with another I have no control over. My application needs to be able to create a user and change share permissions. Currently I am able to make a share, but I can't figure out how to set access permissions for that share.

The idea is that the newly created user (w/ password) will have permissions on the share I create.

View 1 Replies

VS 2010 Code Commonality - All Files Share Common Code ?

Jan 22, 2012

Wondering if it is possible. It works on the idea that all files share common code. The program would ideally analyse the source file and compare it to the reference files. It would then find common parts of the code and write it to a rebuild file. At the end the rebuild file and the reference files would then be able to rebuild the source file without it being present.

For Example.

source file code = xxyyzyzyxw
ref file 1 = xyxxzyzxwyy
ref file 2 = zxxwyzzywxx

The program would then analyse these files and make a rebuild file like the following

source(0,1) = ref1(2,3)
source(2,3) = ref1(10,11)
source(4,7) = ref2(5,6) + ref2(5,6)
source(8,9) = ref2(2,3)

Thus you would be able to build the source file using these instructions and the reference files.

View 1 Replies

VS 2010 List Folders Under A Specific Share?

Feb 29, 2012

I am trying to list folders under a specific share example: \servernameshare I want the list to display in a listbox named folderlistBx I do not want to see file names or subfolders, just a list of folders

Private Sub ListBtn_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListBtn.Click
Dim FS As New FileSystemObject

[Code].....

View 1 Replies

Create A Folder On A Remote Computer Then Share It Out?

Aug 19, 2009

I need to create a folder on a remote machine (The machine name and UNC path are stored in an Access 2007 database. Once the folder is created, I need to share it out with Everyone:Full Control Permissions?

View 3 Replies

Open A File From A Remote Network Share?

Jan 14, 2010

I am trying to open a file from a server

I currently have

Dim attachedFilePath As String = "\myservermyshare est.txt"
File.Open(attachedFilePath, FileMode.Open, FileAccess.Read, FileShare.Read)

This does not open a file.

However, if I change the path to be local then there is no issue.

Dim attachedFilePath As String = "c:... est.txt"

So, is there a way to open a file from remote storage?

View 1 Replies

Create An Application That Connects To A SQL Database To Populate A Datagrid - Getting An Error 'remote Connection Permissions' ?

Sep 25, 2009

I am using VB 2008 Express and have created an application that connects to a SQL database to populate a datagrid.The application is working properly on my computer but will not on others 'remote connection permissions' error.After some googleing I found that the express version is crippled to only work on local machines that use a database.If I purchase Visual Studio 2008 Standard Edition, import and rebuild my application, will my application be able to run properly on other PC's?

View 7 Replies

VS 2010 Code To Run On Remote Server As Administrator?

Jun 21, 2011

I need to write an app that will stop and restart a service on a domain controller. The app needs to be usable by all domain users without making them run as.

Therefore, I want to have the administrators login details within the app itself (I will encrypt them).

How do I get my app to run something on the server as administrator though?

View 2 Replies

VS 2010 Code To Detect Remote Operating System?

Mar 7, 2012

I want to detect the operating System of a local or remote pc based on the IP or computer name I typed in a text box, these will all be on the same domainThis is what I use for the local OS version

View 4 Replies

Copy File To A File Share On Remote Machine

Aug 14, 2009

I am developing an Application in VB.Net 2.0. I have a module which would copy files from the Local Machine to a shared folder on remote machine. This shared folder on the remote machine is an authenticated folder. So, after searching on the Internet I found the following piece of code.[code]Another point to note is that when I connect to the File Share using Windows Explorer and then try to execute the application, it works properly.I am not sure why I am getting the error when I do not connect to the Shared Folder using Windows Explorer.Do I have to set some property so that the Credentials passed in the authentication are used.I also checked some posts that suggested setting up Mapped Drive to the Shared Folder on the Local machine and then to copy the file using IO.File.Copy function. However, I cannot use this as this Remote Folder should be only accessed through the application and not in any other case by the User. The users will not even have the credentials to this remote Server as it will be configured by the admin.So, Is there any way in which I can set this up and transfer the files from local machine to a remote shared folder?

View 3 Replies

Count Different Objects In A List That All Share The Same Interface?

May 26, 2011

I have an object (MyObj) that itself will hold a List of other objects of various types and I want to count them as they are added to MyObj.That's the simple explanation, anyways...I have an Interface (MyInterface) that all sub-objects agree to. MyObj has a List(Of MyInterface) property that all the sub-objects are added to. MyInterface will expose a property that lets me figure out what subtype each object is (the sub-objects do not inherit from MyObj at all).

But I want to count these sub-objects as they are added to the list, and I'm trying to find a good way to do it. I don't need to worry about decrementing the count, as I am going to mimic the behavior of String and just create a new instance of MyObj if it ever changes, so all my counts will start from 0. This'll hit the garbage collector a bit, but I think this will allow for simpler (and safer) code. The only sane way I can think of to count objects is a very large structure in MyObj that uses bytes to hold the count (I will never have more than 255 of any given sub-object in the list in MyObj). But, even using bytes, this structure will be about 100-200 bytes big in memory (I have that many sub-objects), and I anticipate having a fair amount of MyObj copies running around, too.

I'll also need a large Select Case to know which count property to increment when a new sub-object is added. This seems to be a bit ugly, though I've used this approach several times already.What I am wondering is, instead of counting each object as it is added to the list, is there some way to query the list and count only the objects of a specific type? I wouldn't need to store this anywhere, since it would be dynamic, like querying a database and asking for a count of a specific column or type of record.I suspect Linq can do this, but Linq is also quite slow. Are there other approaches? Perhaps a predicate of some kind?VB (I am not a C# guy):

From i in MyObj.MyList Group i by i.GetType into g Let c as Int32 = g.Count() And that's it so far. I am still googling, but I am getting way too many C# and SQL references.

View 1 Replies

Get Desired Column From Share Point List?

May 15, 2012

I am using the following Caml Query to get data from a share point list.

oSb.Append(" <OrderBy>")
oSb.Append(" <FieldRef Name=""Title"" />")
oSb.Append(" </OrderBy>")

But this query is giving me all columns of list. Is there any way to get only desired column from a share point list using Caml Query?

View 1 Replies

Applying File Permissions From .NET Code

Mar 11, 2010

I have an application that is writing a comma separated values file. How would I go about altering the permissions of that file from .NET - for example to give read-only permissions to a particular active directory group?

View 4 Replies

Permissions - Code Is Not Running On Restricted User On PC

Feb 27, 2009

I have some code that queries all the printers on our print server and returns a list. I need this code to work so please don't reply with comments asking why I am using it when you can simply type \Server to list the printers (I know this, but need the code to work as part of a larger application). When running the following code on an IT PC with admin rights, it works. When running on a restricted user PC, it doesn't. How can I add permissions in code to elevate the EXE to 'run as administrator'? [Code]

View 14 Replies

VS Was Unable To Determine Code Access Security (CAS) Permissions

May 2, 2009

This program is a small ADOX database with a single data entry Form. Originally written in VB 2005, it was copied into the VB 2008 Project folder. Opening the file in the IDE, it went through the Conversion process, nevertheless, because of the following error detailed below, the program will not accept any changes.

Error List: Warning 1 Unable to find manifest signing certificate in the certificate store. AppointmentsMissed (<the project's name) Under Security in the project's Properties Window these suggestions are made: Visual Studio was unable to determine the Code Access Security (CAS) permissions that are applicable to your project. The most likely cause is that your project references a strongly-named assembly that defines custom permissions, but that is not properly installed in the global assembly cache (GAC).

To correct this, try the following: 1. Ensure that any custom permissions defining assemblies referenced by your project have been properly installed to the GAC. If any of these assemblies have been rebuilt or have had their version numbers modified, you must install the new assemblies in the GAC. 2. Restart Visual Studio.

View 3 Replies

Share WinForms And Code Between 2 Projects?

Jun 7, 2010

I have a working Windows Forms app (split into an EXE and a few DLLs). Now I've been asked to look at creating another app (MyAppLite) that has only a very small subset of the functionality. Think of it as similar to MS Word Viewer vs. MS Word.

Everything that I need to build MyAppLite is contained in the main solution - essentially I need to use a couple of the WinForms and whatever bits in the DLLs they call into.

What would be the best way to do this?

I was thinking of creating another Project in my solution for MyAppLite, then adding the necessary source files as links (using Add Existing Item > Add As Link in Solution Explorer).

I definitely wouldn't want to maintain 2 copies of the source code. FYI it's a .NET 2.0 VB app, using VS2008.

View 2 Replies

Elevate Security Permissions For Statically Referenced Unmanaged Code?

Apr 25, 2011

In my managed VB.NET code, I am able to write a file out to my desktop. Although, the statically referenced unmanaged code is unable to. I have hunted all over MSDN to find out how I can elevate the security permissions for this library method, but am unableto find anything.I declare the method as...Declare Sub WriteFile Lib "DataLog.dll" (ByVal fileName As String)Although, it throws an exception due to being forbidden from writing to the desktop. Is there an attribute

View 7 Replies

Run NET Application From A File Share Without Code Signing?

May 2, 2009

The .NET security model throws security errors whenever a .NET exe is run from a file share. The error does not appear when ran from a local drive. Does anyone know of a way around this without requiring the code to be signed?

View 7 Replies

Share Open Source Code And Contribute To Other Project

Feb 23, 2009

I'm looking for a place where I can share my open source code and contribute to other projects. Can anyone recommend me a site/community where there is lots of support and enthusiasm for open source?

View 3 Replies

VS 2010 Registry Key Permissions?

Feb 19, 2010

im writing a program that edits Registry values using the

VB
Imports Microsoft.Win32
Imports System
Public Class Main

[Code]...

View 6 Replies

VS 2010 - How To Change Registry Key Permissions

May 5, 2012

I am trying to change the permisions of the following registry key from within VB.net:-
HKEY_LOCAL_MACHINESOFTWAREMicrosoftMSLicensing
Basically need to change users to full control. I need to change permissions for the "users" group.

View 8 Replies

VS 2010 Setting Permissions On CommonAppDataFolder

Feb 15, 2011

My app needs a config file that can be written to by the user. I've got the Setup project to install it to [CommonAppDataFolder][Manufacturer]][Product] but that folder is then read only to normal users (which defeats the point really!).

I've read various articles on the internet on how to solve this, ranging from making the app a Full Trust ClickOnce app to running a separate app post install to change the permissions.

View 3 Replies

VS 2010 Cannot Connect To .mdf File (Lack Of Permissions)?

Dec 14, 2010

Just tried to create a new Data Source in VB 2010, apparently I don't have permission to connect to the 'Login.mdf' file I recently created in SQL 2008. Does anyone here have any knowledge of how to surpass this problem? I'm the Administrator of my PC and have full permissions and UAC is turned off so that shouldn't be the problem either

View 1 Replies

Guitar Champion Final Release ! 2009 Share Your Project | Dream.In.Code?

Feb 28, 2009

Its finally done... post your impressions!Attached File(s) GH_Champion.zip (11.34K)Number of downloads: 35

View 7 Replies

VS 2008 Copy File To Network Share With Username/pass Passed In The Code

Aug 4, 2010

I've been looking at accessing shared folders, read and write, via the network without being prompted by the OS for the username and password.

On this forum, and googling, I can find many things about accessing network shares, but none using code which also passes the username and password required.

What I'm basically looking for is to not have to map a drive on the users computer. Then using code, write or read files from a network share and at the same time pass the username / password required for that network share.

View 11 Replies

VS 2010 How To Share Files

Dec 22, 2011

A thing which i've discovered with vb2010 is that you can't share files like a form or something that way it comes at least. If you attach a form or usercontrol from a different folder it will automatically copy it into the current project folder and then save to that. How can i stop vb from doing this? It won't always be but in this case i need to share a few forms among multiple projects and it would be a royal pain to have to copy them each time manually.

View 4 Replies







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