Networkdrive mapeado no logout

2

Estou usando um script para manter uma conexão de rede mapeada ativa, mas é claro que a conexão mapeada desapareceu quando fiz o logout. A questão agora é que estou executando isso no Windows Server 2008 R2, onde uso a área de trabalho remota para fazer o login na conta de administrador. No entanto, ele deve permanecer conectado e não remover a conexão mapeada, pois esse script se encarrega de não efetuar logout no sharepoint do MS Office 365.

Existe uma maneira de manter o local de rede mapeado (L :) disponível após o logout? Então o script pode rodar para continuar a conexão?

# Create an IE Object and navigate to my SharePoint Site

$ie = New-Object -ComObject InternetExplorer.Application
$ie.navigate('https://xxx.sharepoint.com/')

# Don't need the object anymore, so let's close it to free up some memory
$ie.Quit()

# Just in case there was a problem with the web client service
# I am going to stop and start it, you could potentially remove this
# part if you want. I like it just because it takes out a step of 
# troubleshooting if I'm having problems.

Stop-Service WebClient
Start-Service WebClient

# We are going to set the $Drive variable here, this is just
# going to tell the command what drive letter to map you can 
# change this to whatever you want (if you change it to a 
# drive that is already mapped it will overwrite it, so be careful.

$Drive = "L:"

# You can change the drive destiniation to whatever you want,
# it has to be a document library or folder of course.
$DrvDest = "https://xxx.sharepoint.com/files/"

# Here is where we create the object to map the network drive and
# then map the network drive
$net = New-Object -ComObject WScript.Network;
$net.mapnetworkdrive($Drive,$DrvDest)

# That is the end of the script, now schedule this with task
# scheduler and every so often and you should be set.
    
por Rob 16.10.2012 / 08:47

2 respostas

1

Em vez de tentar manter uma unidade de rede aberta, por que não simplesmente usar o caminho UNC para o recurso. por exemplo.

\SERVER\Folder

em vez de

L:

    
por 16.10.2012 / 11:16
0

primeiro você deve aprender como:

Abra a biblioteca de documentos do SharePoint no Windows Explorer

então você pode criar um arquivo de lote, com o comando net use você irá configurar qual usuário autenticar e pode definir o usuário e a senha para sua pasta compartilhada desejada

NET USE
[devicename | *] [\computername\sharename[\volume] [password | *]]
        [/USER:[domainname\]username]
        [/USER:[dotted domain name\]username]
        [/USER:[username@dotted domain name]
        [/SMARTCARD]
        [/SAVECRED]
        [[/DELETE] | [/PERSISTENT:{YES | NO}]]

NET USE {devicename | *} [password | *] /HOME

NET USE [/PERSISTENT:{YES | NO}]
if you need , you can map administrator shared folders that always hide for other users
    
por 29.10.2012 / 06:14