value in WriteINIStr
I need to create a ini file like this
[SERVER]
SERVER='MYSERVER'
Ive write this lines of code
ClearErrors
ReadINIStr $0 $INSTDIR\SQL.ini SERVER SERVER
IfErrors 0 +2
WriteINIStr $INSTDIR\SQLConn.ini SERVER SERVER 'MYSERVER'
It works but the ' in value dont write
It looks like
[SERVER]
SERVER=MYSERVER
How can I put the '' in 'MYSERVER'
TIA