473,386 Members | 1,654 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Copying Local Profile to network drive in .NET

Hello,

I am trying to find a way to create a scheduled task or
service that will copy my local profile folders
under "Documents and settings" to a network drive. This
would allow me to restore my settings if my profile became
tampered with or corrupt. Is there any sample code
available out there?

-Robert
Nov 22 '05 #1
4 1439
Thank you for getting me started down the path of the
creating a service to accomplish this. I created the
service with the code you provided me. However, I do have
few more challenges which I could use some more help.

The first challenge, is that I need a way to debug the
service before I deploy it, if this is possible.

The second challenge is that I need to copy the entire
directory underneath "Documents and Settings\rtaranti" for
example to my back up drive (Ex. h:\profiles) I hace
attempted to use the following code:

'************************************************* *
FSO = CreateObject("Scripting.FileSystemObject")
If (FSO.FolderExists(sDestinationFolderPath)) Then
FSO.CopyFolder(sSourceFolderPath, sDestinationFolderPath)
End If
'************************************************* **

My problem here is that some files in the subfolders, such
as the user.dat is locaked and cannot be copied. This
prevents the FileScripting object fomr continuing it's
job.
I noticed on my windows 2000 server machine, I have the
ability to perform the "CopyTo" method through
the "UserProfiles" tab under "My Computer/properites" to
copy the profile that I am logged in as to another
profile. This action seems to able to copy all the files
even though they are in session. Is there a way to re-use
code or objects like that?...Or someway to copy all the
files without having the process fail?

Thanks for all your help!

-Robert
-----Original Message-----
Hi Robert,

Here I write a sample for you. Hope this will help you.

using System.IO;
using System.Threading;
using System.Runtime.InteropServices;
private static bool flag;
protected override void OnStart(string[] args) {
Thread wd = new Thread(new ThreadStart(RunThread)); flag=true;
wd.Start();
}
/// Stop this service.
protected override void OnStop()
{
flag = false;
allDone.WaitOne();
}
private static void RunThread()
{
while(flag)
{
try
{
File.Copy (@"c:\a.txt",@"\\fileserver\fsaf\b.txt",true); // thefileserver is where your network drive lies
}
catch(Exception e)
{ // to log the exception. StreamWriter sr = File.AppendText(@"C:\service.log"); sr.WriteLine (e.StackTrace.ToString()); sr.Flush();
sr.Close();
}
finally
{
}
}
allDone.Set();
}

Here is a link about how to write a windows service.
Please have a try and let me if this does the job for you.
Cheers!

--------------------
Content-Class: urn:content-classes:message
From: "Robert Tarantino" <rt******@promega.com>
Sender: "Robert Tarantino" <rt******@promega.com>
Subject: Copying Local Profile to network drive in .NET
Date: Mon, 18 Aug 2003 14:52:14 -0700
Lines: 10
Message-ID: <0b****************************@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcNl0vxGha0FcRubQmyplraTC0riuw==
Newsgroups: microsoft.public.dotnet.general
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.general:104941NNTP-Posting-Host: TK2MSFTNGXA08 10.40.1.160
X-Tomcat-NG: microsoft.public.dotnet.general

Hello,

I am trying to find a way to create a scheduled task or
service that will copy my local profile folders
under "Documents and settings" to a network drive. This
would allow me to restore my settings if my profile becametampered with or corrupt. Is there any sample code
available out there?

-Robert
Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and

confers no rights.
.

Nov 22 '05 #2
Thank you for getting me started down the path of the
creating a service to accomplish this. I created the
service with the code you provided me. However, I do have
few more challenges which I could use some more help.

The first challenge, is that I need a way to debug the
service before I deploy it, if this is possible.

The second challenge is that I need to copy the entire
directory underneath "Documents and Settings\rtaranti" for
example to my back up drive (Ex. h:\profiles) I hace
attempted to use the following code:

'************************************************* *
FSO = CreateObject("Scripting.FileSystemObject")
If (FSO.FolderExists(sDestinationFolderPath)) Then
FSO.CopyFolder(sSourceFolderPath, sDestinationFolderPath)
End If
'************************************************* **

My problem here is that some files in the subfolders, such
as the user.dat is locaked and cannot be copied. This
prevents the FileScripting object fomr continuing it's
job.
I noticed on my windows 2000 server machine, I have the
ability to perform the "CopyTo" method through
the "UserProfiles" tab under "My Computer/properites" to
copy the profile that I am logged in as to another
profile. This action seems to able to copy all the files
even though they are in session. Is there a way to re-use
code or objects like that?...Or someway to copy all the
files without having the process fail?

Thanks for all your help!

-Robert
-----Original Message-----
Hi Robert,

Here I write a sample for you. Hope this will help you.

using System.IO;
using System.Threading;
using System.Runtime.InteropServices;
private static bool flag;
protected override void OnStart(string[] args) {
Thread wd = new Thread(new ThreadStart(RunThread)); flag=true;
wd.Start();
}
/// Stop this service.
protected override void OnStop()
{
flag = false;
allDone.WaitOne();
}
private static void RunThread()
{
while(flag)
{
try
{
File.Copy (@"c:\a.txt",@"\\fileserver\fsaf\b.txt",true); // thefileserver is where your network drive lies
}
catch(Exception e)
{ // to log the exception. StreamWriter sr = File.AppendText(@"C:\service.log"); sr.WriteLine (e.StackTrace.ToString()); sr.Flush();
sr.Close();
}
finally
{
}
}
allDone.Set();
}

Here is a link about how to write a windows service.
Please have a try and let me if this does the job for you.
Cheers!

--------------------
Content-Class: urn:content-classes:message
From: "Robert Tarantino" <rt******@promega.com>
Sender: "Robert Tarantino" <rt******@promega.com>
Subject: Copying Local Profile to network drive in .NET
Date: Mon, 18 Aug 2003 14:52:14 -0700
Lines: 10
Message-ID: <0b****************************@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcNl0vxGha0FcRubQmyplraTC0riuw==
Newsgroups: microsoft.public.dotnet.general
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.general:104941NNTP-Posting-Host: TK2MSFTNGXA08 10.40.1.160
X-Tomcat-NG: microsoft.public.dotnet.general

Hello,

I am trying to find a way to create a scheduled task or
service that will copy my local profile folders
under "Documents and settings" to a network drive. This
would allow me to restore my settings if my profile becametampered with or corrupt. Is there any sample code
available out there?

-Robert
Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and

confers no rights.
.

Nov 22 '05 #3
Peter, in reference to the "Copy To" method". Could you
tell what windows object and function call is used to
perform this task? Is there any documentation on using
this outside of the windows interface?

-Robert

-----Original Message-----
Hi Robert,

1. My problem here is that some files in the subfolders, such as the user.dat is locaked and cannot be copied. This
prevents the FileScripting object fomr continuing it's
job.
You cannot touch the ntuser.dat file in the current account. When you login, the ntuser.dat hive from the appropriate profile is loaded into the registry as the HKEY_CURRENT_USER branch. You cannot even open the file programmatically for reading, because the OS locks the file for exclusive use. You have to login as another user (with admin rights) to access the file.

2. I noticed on my windows 2000 server machine, I have the ability to perform the "CopyTo" method through
the "UserProfiles" tab under "My Computer/properites" to
copy the profile that I am logged in as to another
profile. This action seems to able to copy all the files
even though they are in session. Is there a way to re- use code or objects like that?...Or someway to copy all the
files without having the process fail?

I have made a test and found that the ˇ°CopyToˇ± method you refer to can not be applied to the current logon user account.

I suggest you do it in another account with admin rights [You may add the account to the administrators group]

Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and
confers no rights.
--------------------
Content-Class: urn:content-classes:message
From: "Robert Tarantino" <rt******@promega.com>
Sender: "Robert Tarantino" <rt******@promega.com>
References: <0b****************************@phx.gbl>

<ZR**************@cpmsftngxa06.phx.gbl>
Subject: RE: Copying Local Profile to network drive in .NETDate: Wed, 20 Aug 2003 10:32:05 -0700
Lines: 140
Message-ID: <01****************************@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
Thread-Index: AcNnQPmZVnNP589QSDGwdm3LOuLgfA==
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Newsgroups: microsoft.public.dotnet.general
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.general:105218NNTP-Posting-Host: TK2MSFTNGXA12 10.40.1.164
X-Tomcat-NG: microsoft.public.dotnet.general

Thank you for getting me started down the path of the
creating a service to accomplish this. I created the
service with the code you provided me. However, I do have few more challenges which I could use some more help.

The first challenge, is that I need a way to debug the
service before I deploy it, if this is possible.

The second challenge is that I need to copy the entire
directory underneath "Documents and Settings\rtaranti" for example to my back up drive (Ex. h:\profiles) I hace
attempted to use the following code:

'*********************************************** ***
FSO = CreateObject("Scripting.FileSystemObject")
If (FSO.FolderExists(sDestinationFolderPath)) Then
FSO.CopyFolder(sSourceFolderPath, sDestinationFolderPath)End If
'*********************************************** ****

My problem here is that some files in the subfolders, such as the user.dat is locaked and cannot be copied. This
prevents the FileScripting object fomr continuing it's
job.
I noticed on my windows 2000 server machine, I have the
ability to perform the "CopyTo" method through
the "UserProfiles" tab under "My Computer/properites" to
copy the profile that I am logged in as to another
profile. This action seems to able to copy all the files even though they are in session. Is there a way to re- use code or objects like that?...Or someway to copy all the
files without having the process fail?

Thanks for all your help!

-Robert
-----Original Message-----
Hi Robert,

Here I write a sample for you. Hope this will help you.

using System.IO;
using System.Threading;
using System.Runtime.InteropServices;
private static bool flag;
protected override void OnStart(string[]

args)
{
Thread wd = new Thread(new

ThreadStart(RunThread));
flag=true;
wd.Start();
}
/// Stop this service.
protected override void OnStop()
{
flag = false;
allDone.WaitOne();
}
private static void RunThread()
{
while(flag)
{
try
{
File.Copy

(@"c:\a.txt",@"\\fileserver\fsaf\b.txt",true); // the
fileserver is where your network drive lies
}
catch(Exception e)
{ // to log the

exception.
StreamWriter sr =

File.AppendText(@"C:\service.log");
sr.WriteLine

(e.StackTrace.ToString());
sr.Flush();
sr.Close();
}
finally
{
}
}
allDone.Set();
}

Here is a link about how to write a windows service.
Please have a try and let me if this does the job for you.Cheers!

--------------------
Content-Class: urn:content-classes:message
From: "Robert Tarantino" <rt******@promega.com>
Sender: "Robert Tarantino" <rt******@promega.com>
Subject: Copying Local Profile to network drive in .NET
Date: Mon, 18 Aug 2003 14:52:14 -0700
Lines: 10
Message-ID: <0b****************************@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4910.0300Thread-Index: AcNl0vxGha0FcRubQmyplraTC0riuw==
Newsgroups: microsoft.public.dotnet.general
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl

microsoft.public.dotnet.general:104941
NNTP-Posting-Host: TK2MSFTNGXA08 10.40.1.160
X-Tomcat-NG: microsoft.public.dotnet.general

Hello,

I am trying to find a way to create a scheduled task or service that will copy my local profile folders
under "Documents and settings" to a network drive. This would allow me to restore my settings if my profile

became
tampered with or corrupt. Is there any sample code
available out there?

-Robert

Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and

confers no rights.

.


.

Nov 22 '05 #4
Hi Robert,

I am glad that I can help you.
Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
--------------------
Content-Class: urn:content-classes:message
From: "Robert Tarantino" <rt******@promega.com>
Sender: "Robert Tarantino" <rt******@promega.com>
References: <0b****************************@phx.gbl> <ZR**************@cpmsftngxa06.phx.gbl>
<01****************************@phx.gbl>
<DY**************@cpmsftngxa06.phx.gbl>
<03****************************@phx.gbl>
<Ff**************@cpmsftngxa06.phx.gbl>Subject: RE: Copying Local Profile to network drive in .NET
Date: Mon, 25 Aug 2003 07:34:38 -0700
Lines: 298
Message-ID: <0a****************************@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcNrFgMbUOY4iS9QTtygk6E092RpbA==
Newsgroups: microsoft.public.dotnet.general
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.general:105966
NNTP-Posting-Host: TK2MSFTNGXA12 10.40.1.164
X-Tomcat-NG: microsoft.public.dotnet.general

Thank you Peter. I think this is what I was looking for.
I really appreciate your efforts!
-Robert
-----Original Message-----
Hi Robert,

I think you may need to do it yourself.
There is a useful function SHGetFolderPath which will

retrieve the profile
related path.
http://support.microsoft.com/?id=252652
You may take a look at the link below.
http://support.microsoft.com/default.aspx?scid=kb;en-

us;310294

Hope this will help you.

Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and

confers no rights.
--------------------
Content-Class: urn:content-classes:message
From: "Robert Tarantino" <rt******@promega.com>
Sender: "Robert Tarantino" <rt******@promega.com>
References: <0b****************************@phx.gbl>

<ZR**************@cpmsftngxa06.phx.gbl>
<01****************************@phx.gbl>
<DY**************@cpmsftngxa06.phx.gbl>
Subject: RE: Copying Local Profile to network drivein .NETDate: Fri, 22 Aug 2003 16:28:00 -0700
Lines: 232
Message-ID: <03****************************@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcNpBQbx51d76UKbQx+zcai9OVCbLw==
Newsgroups: microsoft.public.dotnet.general
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gblmicrosoft.public.dotnet.general:105707NNTP-Posting-Host: TK2MSFTNGXA14 10.40.1.166
X-Tomcat-NG: microsoft.public.dotnet.general

Peter, in reference to the "Copy To" method". Could you
tell what windows object and function call is used to
perform this task? Is there any documentation on using
this outside of the windows interface?
-Robert
-----Original Message-----
Hi Robert,

1. My problem here is that some files in thesubfolders,such
as the user.dat is locaked and cannot be copied. This
prevents the FileScripting object fomr continuing it's
job.
You cannot touch the ntuser.dat file in the current
account. When you
login, the ntuser.dat hive from the appropriate profile
is loaded into the
registry as the HKEY_CURRENT_USER branch. You cannotevenopen the file
programmatically for reading, because the OS locks the
file for exclusive
use. You have to login as another user (with admin
rights) to access the
file.

2. I noticed on my windows 2000 server machine, I have
the
ability to perform the "CopyTo" method through
the "UserProfiles" tab under "My Computer/properites"tocopy the profile that I am logged in as to another
profile. This action seems to able to copy all thefileseven though they are in session. Is there a way to re-
use
code or objects like that?...Or someway to copy all the
files without having the process fail?

I have made a test and found that the ˇ°CopyToˇ± method
you refer to can
not be applied to the current logon user account.

I suggest you do it in another account with admin rights
[You may add the
account to the administrators group]

Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and
confers no rights.
--------------------
>Content-Class: urn:content-classes:message
>From: "Robert Tarantino" <rt******@promega.com>
>Sender: "Robert Tarantino" <rt******@promega.com>
>References: <0b****************************@phx.gbl>
<ZR**************@cpmsftngxa06.phx.gbl>
>Subject: RE: Copying Local Profile to network drive
in .NET
>Date: Wed, 20 Aug 2003 10:32:05 -0700
>Lines: 140
>Message-ID: <01****************************@phx.gbl>
>MIME-Version: 1.0
>Content-Type: text/plain;
> charset="iso-8859-1"
>Content-Transfer-Encoding: 7bit
>X-Newsreader: Microsoft CDO for Windows 2000
>Thread-Index: AcNnQPmZVnNP589QSDGwdm3LOuLgfA==
>X-MimeOLE: Produced By Microsoft MimeOLEV5.50.4910.0300>Newsgroups: microsoft.public.dotnet.general
>Path: cpmsftngxa06.phx.gbl
>Xref: cpmsftngxa06.phx.gbl
microsoft.public.dotnet.general:105218
>NNTP-Posting-Host: TK2MSFTNGXA12 10.40.1.164
>X-Tomcat-NG: microsoft.public.dotnet.general
>
>Thank you for getting me started down the path of the
>creating a service to accomplish this. I created the
>service with the code you provided me. However, I do
have
>few more challenges which I could use some more help.
>
>The first challenge, is that I need a way to debug the
>service before I deploy it, if this is possible.
>
>The second challenge is that I need to copy the entire
>directory underneath "Documents and Settings\rtaranti"
for
>example to my back up drive (Ex. h:\profiles) I hace
>attempted to use the following code:
>
>'******************************************** ******
>FSO = CreateObject("Scripting.FileSystemObject")
>If (FSO.FolderExists(sDestinationFolderPath)) Then
> FSO.CopyFolder(sSourceFolderPath,
sDestinationFolderPath)
>End If
>'******************************************** *******
>
>My problem here is that some files in the subfolders,
such
>as the user.dat is locaked and cannot be copied. This
>prevents the FileScripting object fomr continuing it's
>job.
>
>
>I noticed on my windows 2000 server machine, I havethe>ability to perform the "CopyTo" method through
>the "UserProfiles" tab under "My Computer/properites"to>copy the profile that I am logged in as to another
>profile. This action seems to able to copy all the
files
>even though they are in session. Is there a way to re-
use
>code or objects like that?...Or someway to copy allthe>files without having the process fail?
>
>Thanks for all your help!
>
>-Robert
>
>
>
>>-----Original Message-----
>>Hi Robert,
>>
>>Here I write a sample for you. Hope this will helpyou.>>
>>using System.IO;
>>using System.Threading;
>>using System.Runtime.InteropServices;
>> private static bool flag;
>> protected override void OnStart(string[]
>args)
>> {
>> Thread wd = new Thread(new
>ThreadStart(RunThread));
>> flag=true;
>> wd.Start();
>> }
>> /// Stop this service.
>> protected override void OnStop()
>> {
>> flag = false;
>> allDone.WaitOne();
>> }
>> private static void RunThread()
>> {
>> while(flag)
>> {
>> try
>> {
>> File.Copy
>(@"c:\a.txt",@"\\fileserver\fsaf\b.txt",true) ; // the
>>fileserver is where your network drive lies
>> }
>> catch(Exception e)
>> { // to log the
>exception.
>> StreamWriter sr =
>File.AppendText(@"C:\service.log");
>> sr.WriteLine
>(e.StackTrace.ToString());
>> sr.Flush();
>> sr.Close();
>> }
>> finally
>> {
>> }
>> }
>> allDone.Set();
>> }
>>
>>Here is a link about how to write a windows service.
>>Please have a try and let me if this does the job for
you.
>>Cheers!
>>
>>--------------------
>>>Content-Class: urn:content-classes:message
>>>From: "Robert Tarantino" <rt******@promega.com>
>>>Sender: "Robert Tarantino" <rt******@promega.com>
>>>Subject: Copying Local Profile to network drivein .NET>>>Date: Mon, 18 Aug 2003 14:52:14 -0700
>>>Lines: 10
>>>Message-ID: <0b****************************@phx.gbl>
>>>MIME-Version: 1.0
>>>Content-Type: text/plain;
>>> charset="iso-8859-1"
>>>Content-Transfer-Encoding: 7bit
>>>X-Newsreader: Microsoft CDO for Windows 2000
>>>X-MIMEOLE: Produced By Microsoft MimeOLE
V5.50.4910.0300
>>>Thread-Index: AcNl0vxGha0FcRubQmyplraTC0riuw==
>>>Newsgroups: microsoft.public.dotnet.general
>>>Path: cpmsftngxa06.phx.gbl
>>>Xref: cpmsftngxa06.phx.gbl
>microsoft.public.dotnet.general:104941
>>>NNTP-Posting-Host: TK2MSFTNGXA08 10.40.1.160
>>>X-Tomcat-NG: microsoft.public.dotnet.general
>>>
>>>Hello,
>>>
>>>I am trying to find a way to create a scheduled task
or
>>>service that will copy my local profile folders
>>>under "Documents and settings" to a network drive.
This
>>>would allow me to restore my settings if my profile
>became
>>>tampered with or corrupt. Is there any sample code
>>>available out there?
>>>
>>>-Robert
>>>
>>
>>
>>Regards,
>>Peter Huang
>>Microsoft Online Partner Support
>>Get Secure! www.microsoft.com/security
>>This posting is provided "as is" with no warrantiesand>confers no rights.
>>
>>.
>>
>

.

.


Nov 22 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Robert Tarantino | last post by:
Hello, I am trying to find a way to create a scheduled task or service that will copy my local profile folders under "Documents and settings" to a network drive. This would allow me to restore...
0
by: MikeL | last post by:
I am using Access 2K and have created a simple data access page which only works properly when it is run from the local C drive. The data file that is being accessed is held on a shared network...
2
by: ReidarT | last post by:
I have a copyfile x y and built this to a exe-file.' When I run the exe-file built in the bin-directory and copy it to other machines I get an errormessage concerning security policy. I don't...
3
by: jimmyfishbean | last post by:
Hi, My client has the following network structure: 2 Windows 2003 servers : Server 1 - Web server running IIS, ftp import and export folder, ASP.NET SOAP web service and asp code on here....
14
by: frostalicious | last post by:
Used VB.NET (on my client PC) to convert VB6 executable to .NET executable. Placed the .exe file on a network drive on my server. From client, ran .NET Wizards "Trust an Assembly" to make the...
2
by: .Net Believer | last post by:
I using the routine below to copy file to a network drive for a regular backup process. Before calling this routine I using another function to check the presence of the LAN connection and the...
6
by: Sue | last post by:
Hello We have an application where the user would upload files (max size of 200 mb) from their client machine. This application will run on a web server (its a web server which would be used by...
3
by: Jeries Shahin | last post by:
Hi I am trying to copy files from a folder on a Novel machine, the folder is in the UMC format (i cannot map a network drive for some business reasons). Upon copying, it fires an IOException...
2
by: Jerad Rose | last post by:
I have a fairly simple C# console app which copies files from a network folder to a local folder. When the app resides on my local C: drive, it runs just fine. However, when the app resides on a...
3
by: RLN | last post by:
(New to SQL Server Installs) I installed SQL Server 2005 Developer Edition on a WinXP-SP2 workstation and can see some enterprise databases on the network just fine. My problem is I cannot...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.