Skip to main content

Posts

Showing posts with the label cmd

How to generate Browser Scripts for Siebel Dedicated Client

Open the properties of Siebel Dedicated Application (Siebel Public Sector - ENU) shortcut. From the Target field get the cfg path which might look like this: " c:\Siebel\15.0.0.0.0\Client\bin\enu\publicsector.cfg " if you are using the vanilla cfg. You need modify the below CMD command as per your Siebel installation directory. C:\Siebel\15.0.0.0.0\ses\siebsrvr\BIN\genbscript C:\Siebel\15.0.0.0.0\Client\bin\enu\publicsector.cfg C:\Siebel\15.0.0.0.0\Client\PUBLIC\enu enu This is path of Browser Script generating Utility: C:\Siebel\15.0.0.0.0\ses\siebsrvr\BIN\genbscript This is the path of Siebel Dedicated Client cfg path: C:\Siebel\15.0.0.0.0\Client\bin\enu\publicsector.cfg Below is the path where Browser Script Utility will generate the Browser Scripts. Make sure this is correct as Siebel Dedicated Client get the Browser Scripts from this path ( *\Client\PUBLIC\enu ). C:\Siebel\15.0.0.0.0\Client\PUBLIC\enu Open the Windows Command Prompt and paste the above command and press ...

How to generate Browser Scripts for Siebel Server

Run below command on CMD, make sure to change paths according to your installation directory of Siebel: E:\siebel\8.2.2.0.0 \ses\siebsrvr\BIN\genbscript E:\Siebel\8.2.2.0.0 \Client_1\BIN\ENU\publicsector.cfg E:\Siebel\8.2.2.0.0 \sweapp\Public\enu enu pause Or open notepad and paste the above and save it as .bat file. Double click on bat file and browser scripts will start generating. E:\siebel\8.2.2.0.0\ses\siebsrvr\BIN\genbscript  > Scripts Generator Utility. E:\Siebel\8.2.2.0.0\Client_1\BIN\ENU\publicsector.cfg > CFG of Server. E:\Siebel\8.2.2.0.0\sweapp\Public\enu  > Browser scripts will be generated here. enu > Language. pause > After completing the generartion of Browser scripts CMD will not auto close unless press any key.

Windows DISM and System File Checker Utility CMD Commands

Deployment Image Servicing and Management (DISM) tool and sfc utility are used to scans windows 10 for missing corrupted files if found any the utility automatically restores them. 1. Open Command prompt as administrator. 2. Run DISM command dism /online /cleanup-image /restorehealth 3. Run command sfc /scannow (This will check and restore missing system files.)

How to Clear Your Windows Clipboard

Either you can open cmd and type below and press enter for clearing your clipboard. echo off | clip Or you can create shortcut. Right click on desktop go to New and then Shortcut. Copy and Paste the below into "location of the item" field: C:\Windows\System32\cmd.exe /c "echo off | clip" Click Next and type a name for this shortcut and click on Finish. Just double click on this shortcut whenever you need to clear your clipboard. Source: https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/echo https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/clip