- Windows usb pendrive same as that os installed on the system
Eg :- there is an issue with booting of windows 10, then we need a usb of windows 10.
- boot using the usb pendrive
- select repair this pc in the setup menu
Private Sub Create_VCF() | |
'Open a File in Specific Path in Output or Append mode | |
Dim FileNum As Integer | |
Dim iRow As Double | |
iRow = -1 | |
FileNum = FreeFile | |
OutFilePath = "OutputVCF.VCF" | |
Open OutFilePath For Output As FileNum | |
'Loop through Excel Sheet each row and write it to VCF File |
#!/bin/bash | |
xrandr | grep " connected " | awk '{ print$1 }' |
import random | |
import array | |
from openpyxl import load_workbook | |
filename = "passwords.xlsx" | |
wb = load_workbook(filename) | |
ws = wb.worksheets[0] |