Visual LISP, AutoLISP and General Customization
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Adding a regestry key with lisp
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Some time ago I was able to add modyfy and remove regestry keys ussing AutoLISP Unfortunatly I have lost the information on how to do this.
Could someone point me in the right direction?
Solved! Go to Solution.
Re: Adding a regestry key with lisp
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
AutoCAD Help: Developer documentation
vl-registry-read
vl-registry-write
vl-registry delete
etc.
vl-registry-write
Creates a key in the Windows registry
(vl-registry-write reg-key [val-name val-data])
Arguments
reg-key
A string specifying a Windows registry key.
NoteYou cannot use vl-registry-write for HKEY_USERS or KEY_LOCAL_MACHINE.
val-name
A string containing the value of a registry entry.
val-data
A string containing registry data.
If val-name is not supplied or is nil,a default value for the key is written. If val-name is supplied and val-data is not specified, an empty string is stored.
Return Values
vl-registry-write returns val-data, if successful; otherwise nil.
Examples
_$ (vl-registry-write "HKEY_CURRENT_USER\\Test"
"" "test data")
"test data"
_$ (vl-registry-read
"HKEY_CURRENT_USER\\Test")
"test data"
http://docs.autodesk.com/ACD/2011/ENU/filesALR/WS1
'(83 104 110 101 117 112 104 64 71 109 97 105 108 46 99 111 109)
