1. sayfa (Toplam 2 sayfa)
kayıt girdileri dosyası
Gönderilme zamanı: 21 Kas 2007, 10:07
gönderen skinnycem
bos kayıt girdisi dosyası nasıl olusturulur?
Gönderilme zamanı: 21 Kas 2007, 15:17
gönderen velociraptor
yanlis anlamadiysam .reg dosyayi diyosun , ac bit text dosyasi sonunu .reg yap olsun bitsin , neden gerekli ki bu
Gönderilme zamanı: 21 Kas 2007, 19:52
gönderen skinnycem
windows isletim sisteminde açmıs oldugum 16 bit hata baslıklı konunun giderilmesi için bir yazılım buldum.tıklayarak çalıstırın dedigine göre bir reg dosyası açmam gerektigini düsündüm.Bu yüzden istemistim.Gerçi ac bit text dosyası da nasıl açılır onu da bilmiyorum:(
Gönderilme zamanı: 21 Kas 2007, 19:58
gönderen N2O
bos bir yere sag tus>yeni>metin belgesi daha sonra uzantıyı reg yapmak için kaydederken farklı kaydet de daha sonra kayıt türünü Tüm dosyalar yap
ve dosyanın adının sonuna istedigin uzantıyı koy örnek kayıt.reg
Gönderilme zamanı: 21 Kas 2007, 20:00
gönderen skinnycem
The registry entry above will put the hard coded value
"C:\Program Files\Alwil Software\Avast4\aswMonVd.dll"
into the the REG_MULI_SZ value VDD under the key
HKLM\SYSTEM\CurrentControlSet\Control\VirtualDeviceDrivers
Note that if you want to create the above registry file yourself, it
*must* be created as a Unicode file and not an ASCII file.
Also, the registry file will overwrite any existing value in the VDD
value (*not* good), and it will not care if you have another program
files path than "C:\Program Files".
See script below that is much safer to use than the registry file, it
will not overwrite any existing values, and it will use the correct
program files path in all cases. Put the script in a file named e.g.
Avast.vbs, and double click on it to run it.
So I will guess Avast's solution is that you need to delete the
"device=C:\PROGRA~1\ALWILS~1\Avast4\aswmonds.sys" line in CONFIG.NT
yourself, and then add the already discussed registry value to the
registry.
'--------------------8<----------------------
Const HKLM = &H80000002
strToTestOn = "\Avast4\aswMonVd.dll"
strToAddIfNecessary = CreateObject("WScript.Shell").ExpandEnvironmentStrings _
("%PROGRAMFILES%\Alwil Software\Avast4\aswMonVd.dll")
' Only continue if the file exist:
If Not CreateObject("Scripting.FileSystemObject").FileExists( _
strToAddIfNecessary) Then
MsgBox "File " & strToAddIfNecessary & " not found", _
vbCritical + vbSystemModal, "Avast SP2 fix"
WScript.Quit
End If
strKeyPath = "SYSTEM\CurrentControlSet\Control\VirtualDeviceDrivers"
strValueName = "VDD"
strComputer = "." ' "use "." for local computer
Set objReg = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" _
& strComputer & "\root\default:StdRegProv")
objReg.GetMultiStringValue HKLM, strKeyPath, strValueName, arrValues
If IsArray(arrValues) Then
' create string from array, easier to check for existence this way
strValues = "|" & Join(arrValues, "|") & "|"
Else
arrValues = Array()
strValues = ""
End If
If InStr(1, strValues, strToTestOn, vbTextCompare) = 0 Then
' entry is not in array, add it
intArrCount = UBound(arrValues) + 1
ReDim Preserve arrValues(intArrCount)
arrValues(intArrCount) = strToAddIfNecessary
objReg.SetMultiStringValue HKLM, strKeyPath, strValueName, arrValues
End If
MsgBox "Done!", vbInformation + vbSystemModal, "Avast SP2 fix"
aynı konudan baskalarıda muzdariptir diye ekledim buraya
Gönderilme zamanı: 21 Kas 2007, 20:06
gönderen skinnycem
" belirtilen dosya kayıt defteri komut dosyası degil.kayıt defteri düzenleyicisinden sadece ikili kayıt dosyalarını alabilirsiniz" diyor.

Gönderilme zamanı: 21 Kas 2007, 20:28
gönderen N2O
Kod: Tümünü seç
Windows Registry Editor Version 5.00
"C:\Program Files\Alwil Software\Avast4\aswMonVd.dll"
into the the REG_MULI_SZ value VDD under the key
HKLM\SYSTEM\CurrentControlSet\Control\VirtualDeviceDrivers
Note that if you want to create the above registry file yourself, it
*must* be created as a Unicode file and not an ASCII file.
Also, the registry file will overwrite any existing value in the VDD
value (*not* good), and it will not care if you have another program
files path than "C:\Program Files".
See script below that is much safer to use than the registry file, it
will not overwrite any existing values, and it will use the correct
program files path in all cases. Put the script in a file named e.g.
Avast.vbs, and double click on it to run it.
So I will guess Avast's solution is that you need to delete the
"device=C:\PROGRA~1\ALWILS~1\Avast4\aswmonds.sys" line in CONFIG.NT
yourself, and then add the already discussed registry value to the
registry.
'--------------------8<----------------------
Const HKLM = &H80000002
strToTestOn = "\Avast4\aswMonVd.dll"
strToAddIfNecessary = CreateObject("WScript.Shell").ExpandEnvironmentStrings _
("%PROGRAMFILES%\Alwil Software\Avast4\aswMonVd.dll")
' Only continue if the file exist:
If Not CreateObject("Scripting.FileSystemObject").FileExists( _
strToAddIfNecessary) Then
MsgBox "File " & strToAddIfNecessary & " not found", _
vbCritical + vbSystemModal, "Avast SP2 fix"
WScript.Quit
End If
strKeyPath = "SYSTEM\CurrentControlSet\Control\VirtualDeviceDrivers"
strValueName = "VDD"
strComputer = "." ' "use "." for local computer
Set objReg = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" _
& strComputer & "\root\default:StdRegProv")
objReg.GetMultiStringValue HKLM, strKeyPath, strValueName, arrValues
If IsArray(arrValues) Then
' create string from array, easier to check for existence this way
strValues = "|" & Join(arrValues, "|") & "|"
Else
arrValues = Array()
strValues = ""
End If
If InStr(1, strValues, strToTestOn, vbTextCompare) = 0 Then
' entry is not in array, add it
intArrCount = UBound(arrValues) + 1
ReDim Preserve arrValues(intArrCount)
arrValues(intArrCount) = strToAddIfNecessary
objReg.SetMultiStringValue HKLM, strKeyPath, strValueName, arrValues
End If
MsgBox "Done!", vbInformation + vbSystemModal, "Avast SP2 fix"
böyle dene bakalım büyük ihtimalle çalısır
Gönderilme zamanı: 21 Kas 2007, 20:33
gönderen skinnycem
aynı uyarıyı verdi..
Gönderilme zamanı: 21 Kas 2007, 20:37
gönderen N2O
İlginç... bende çalısıyor.
Gönderilme zamanı: 21 Kas 2007, 20:42
gönderen skinnycem
kodlama unicode mu sende de?
Gönderilme zamanı: 21 Kas 2007, 20:43
gönderen N2O
evet
Gönderilme zamanı: 21 Kas 2007, 20:44
gönderen skinnycem
Gönderilme zamanı: 21 Kas 2007, 22:17
gönderen burak_dalkir
ikili reg kaydindan kasti verilen degerin 1 veya 0 olmasidir. ama anlamadigim nokta bu degerlerin icerisinde verilmesi gereken ikili deger olamaz verebilecegin yerler olarak gosterilenlerden birine ikili deger verirseniz programin tamamen iliskilendirilmesini engellemis olursunuz onun yerine programi upload etsenizde bizler yardimci olmaya calissak mumkun mu acaba?
Gönderilme zamanı: 21 Kas 2007, 23:17
gönderen skinnycem
hangi programı?
Gönderilme zamanı: 21 Kas 2007, 23:19
gönderen burak_dalkir
skinnycem yazdı:windows isletim sisteminde açmıs oldugum 16 bit hata baslıklı konunun giderilmesi için bir yazılım buldum.
siz boyle yazmistiniz