Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > it.comp.lang.visual-basic > #19577

Re: Aggiungere carattere in stringa registro

From SB <stNOOObenevSPAM@tin.it>
Newsgroups it.comp.lang.visual-basic
Subject Re: Aggiungere carattere in stringa registro
Date 2019-03-12 15:36 +0100
Organization Aioe.org NNTP Server
Message-ID <apff8ep6224vfjojqj4njipo9lmr6vtfm2@4ax.com> (permalink)
References <q6639b$pq6$1@gioia.aioe.org> <o1hd8e5v29bo4otdastb2cej0n07ofp8e0@4ax.com> <q66hnb$sqb$1@gioia.aioe.org> <eqcf8eh5014od3dh6vrd3nup3qvkqh946s@4ax.com> <q68d9u$11s9$1@gioia.aioe.org>

Show all headers | View raw


Il giorno Tue, 12 Mar 2019 14:47:41 +0100, "Cerebus" <Cerebus@test.it> ha
scritto:

>
>"SB" <stNOOObenevSPAM@tin.it> ha scritto nel messaggio 
>news:eqcf8eh5014od3dh6vrd3nup3qvkqh946s@4ax.com...
>
>> Non c'?olto da capire, per cambiare una chiave in un registro devi 
>> scriverne
>> di nuovo il valore.
>
>Teoricamente non mi serve nemmeno scrivere nulla, ma solo esportare la 
>chiave in un file di testo (so farlo), modificare il file di testo con uno 
>script (non so farlo) e reimprtare la chiave (so farlo).
>
>Il busillis e': qualcuno puo' gentilmente buttare giu' due righe di script 
>per variare questa benedetta scritta in un file di testo?
>
>Il file di testo contiene la seguente roba:
>
>+++++++
>Windows Registry Editor Version 5.00
>
>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ComputerName\ActiveComputerName]
>"ComputerName"="esempio"
>+++++++
>
>Come si vede, tutto cio' che e' compreso tra gli ultimi due segni "=" deve 
>essere seguito prima da un "-", e poi (con un secondo script) il "-" deve 
>essere tolto.
>
>Il file di testo diventa quindi:
>
>
>+++++++
>Windows Registry Editor Version 5.00
>
>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ComputerName\ActiveComputerName]
>"ComputerName"="esempio-"
>+++++++
>
>...per poi tornare com'era.

Qualcosa del genere, da me funziona, nel senso che cambia il valore della chiave
e poi la rimette a posto.
Ho messo i commenti così è più chiaro cosa fa.

RegKey.vbs
________________________


Set wshShell = CreateObject( "WScript.Shell" )


Reg_Key =
"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ComputerName\ActiveComputerName\ComputerName"

'legge il valore
RegValue = wshShell.RegRead(Reg_Key)'& """"
WScript.Echo RegValue

'aggiunge  "-"
RegValueNew = RegValue & "-"

'mette il valore nuovo
wshShell.RegWrite (Reg_Key), RegValueNew, "REG_SZ"

'legge il valore nuovo
WScript.Echo wshShell.RegRead(Reg_Key)

'rimette il vecchio valore
wshShell.RegWrite (Reg_Key), RegValue, "REG_SZ"

'legge il valore vecchio
WScript.Echo wshShell.RegRead(Reg_Key)

Wscript.Quit
_________________________



-- 
ciao
  Stefano

Back to it.comp.lang.visual-basic | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-03-11 17:44 +0100
  Re: Aggiungere carattere in stringa registro SB <stNOOObenevSPAM@tin.it> - 2019-03-11 21:32 +0100
    Re: Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-03-11 21:50 +0100
      Re: Aggiungere carattere in stringa registro SB <stNOOObenevSPAM@tin.it> - 2019-03-12 14:31 +0100
        Re: Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-03-12 14:47 +0100
          Re: Aggiungere carattere in stringa registro SB <stNOOObenevSPAM@tin.it> - 2019-03-12 15:36 +0100
            Re: Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-03-12 21:37 +0100
              Re: Aggiungere carattere in stringa registro SB <stNOOObenevSPAM@tin.it> - 2019-03-13 11:10 +0100
                Re: Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-03-13 14:41 +0100
                Re: Aggiungere carattere in stringa registro SB <stNOOObenevSPAM@tin.it> - 2019-03-13 15:37 +0100
                Re: Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-03-13 16:08 +0100
                Re: Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-03-13 15:27 +0100
                Re: Aggiungere carattere in stringa registro SB <stNOOObenevSPAM@tin.it> - 2019-03-13 16:20 +0100
                Re: Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-03-13 17:00 +0100
                Re: Aggiungere carattere in stringa registro SB <stNOOObenevSPAM@tin.it> - 2019-03-13 17:19 +0100
                Re: Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-03-13 17:23 +0100
                Re: Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-03-13 17:49 +0100
                Re: Aggiungere carattere in stringa registro SB <stNOOObenevSPAM@tin.it> - 2019-03-13 18:02 +0100
                Re: Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-03-13 18:20 +0100
                Re: Aggiungere carattere in stringa registro SB <stNOOObenevSPAM@tin.it> - 2019-03-13 18:24 +0100
                Re: Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-03-13 18:31 +0100
                Re: Aggiungere carattere in stringa registro SB <stNOOObenevSPAM@tin.it> - 2019-03-13 18:58 +0100
                Re: Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-03-13 20:41 +0100
                Re: Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-03-13 21:30 +0100
                Re: Aggiungere carattere in stringa registro SB <stNOOObenevSPAM@tin.it> - 2019-03-13 23:03 +0100
                Re: Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-03-14 23:10 +0100
                Re: Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-03-14 23:21 +0100
                Re: Aggiungere carattere in stringa registro SB <stNOOObenevSPAM@tin.it> - 2019-03-15 13:09 +0100
                Re: Aggiungere carattere in stringa registro SB <stNOOObenevSPAM@tin.it> - 2019-03-15 13:20 +0100
                Re: Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-03-15 14:57 +0100
                Re: Aggiungere carattere in stringa registro SB <stNOOObenevSPAM@tin.it> - 2019-03-15 13:31 +0100
                Re: Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-03-15 14:56 +0100
                Re: Aggiungere carattere in stringa registro SB <stNOOObenevSPAM@tin.it> - 2019-03-15 19:10 +0100
                Re: Aggiungere carattere in stringa registro SB <stNOOObenevSPAM@tin.it> - 2019-03-13 23:10 +0100
                Re: Aggiungere carattere in stringa registro "Cerebus" <Cerebus@test.it> - 2019-04-28 23:43 +0200

csiph-web