I have to Install/Uninstall some products with batch scripts and also use log files to check if Installed or Uninstalled...
So if a product is installed correctly I have somewhere in my log file a line like this one (without quotes):
"SOMETEXT Windows Installer a installé le produit. SOMETEXT"
I would like to detect if (without quotes) "Windows Installer a installé le produit." is present in my file...
I tried a lot of things like :
regex "^.Windows[ ]Installer[ ]a[ ]install,[ ]le[ ]produit.$" (Didn't Match)
trim each line and tried to findstr "WindowsInstallerainstall,leproduit" (Didn't work)
So I hope you'll give me one solution because, I'm looking for one for 3 weeks...
Thanks