Skip to main content

Posts

Showing posts from October, 2019

Pointing AWS Console-Win server 2012-Godaddy-

Step -1 Create a New EC2-Instance Select the Windows Server 212 Permission Setting EveryOne,(Full) CreatorOwner IUSR(Full) System Network Network Service(Full) Administrator Users IIS_Users(FUll) Copy all the files into  Volume Update In aws Console

Bower Installation Notes

Install bower in to visual studio If the bower is not installed in your machine Open the nd commands prompt For designers For uninstalling packages Install Specific package Bower install loadash#2.2.1 Bower install underscore Bower list Bower install backbone Search all Lib Bower search lodash Bower install angular-loadash After complete the installation Add new bower file bower.json

Bundle Installation Notes-Bower,Gulp,

How to capture the log using USB Lyzer

1.       Here you can see to which port your device is connected in the “Device Tree” tab on the left side. You have to check the boxes for which device you need to capture the logs. For example: I have connected the device in port2 and so the device is listed under port2. In order to capture logs of that device, you have to select all the check boxes of the device listed under the specific port.

Tulip Log Collection

TULIP LOG Install –for collecting log from windows Machine After open the tulip log UI select all to configure all the checkboxes and no need to copy the tulip files into C: drive because there is no privilege to save the log into c:Drive IN the Module select the correct driver 1.via driver 2.Additonal Driver After the settings done start the CMD with admin privilege to start the service To check the folder, it’s updated in the drive folder after the printer /scanner use case completed stop the service to copy the result to another otherwise it will lost and check the size also if the size is 0 kb we understand the log collector is not working. Scanning Have there on FlOW ESCL Scanner Capability Scanner Status Scan Job Next Document Image Info Scanner Status 

Compile a VBScript into an EXE – iExpress

Sometimes you need to compile a vbscript into an EXE. There are a few applications that allow you to do this, however there is one already installed on the windows build called  iExpress . Before using this, you need to make sure your script works and launches what it is supposed to. E.g. if it launches Internet Explorer with a specific URL. Go to start menu > run and type  iExpress  and press enter. Next > until you are on  Package title . Here enter a title for your exe. Next > No prompt.  Next > Do not display a license.  Next > Add –  Here you will browse to your vbscript .  Next > In the install program section, you need to point to cscript.exe as this is what will run your script. So enter  C:\Windows\System32\cscript.exe “enter vbscript here.vbs” .  Next > Hidden.  Next > No message.  Next > Here you will select where you want to save your EXE files. Then tick both boxes, click yes on the pop up and  Next > N

How to disable Script Error in WPF

Symptoms- while the application launch after the  3 min  expiry of session expired and  the script generate an error like this             Video Captured Result -Application Error Like-this Code Fix-Result Work Around- using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; namespace ScriptErrorSuppress {     /// <summary>     /// Interaction logic for MainWindow.xaml     /// </summary>     public partial class MainWindow : Window     {         public MainWindow()         {             InitializeComponent();             browser.Navigate("https://accounts.google.com/signu

How to install .Net Framework 3.5 in windows 10 machine

Symptoms- Mostly SQL-server Installation interrupted with .net Framework dependency NDF Package required .net 3.5 Package Dependency Exception Found  Workaround- Mount Installed Current OS version  (win 10-Rs2 || RS3 || RS4 || RS5) from the Host Drive Open Command Prompt- -Note: In the PowerShell command the source name should be Mount driver letter(F) commands- dism.exe /online /enable-feature /featurename:NetFX3 /Source:F:\sources\sxs /LimitAccess