Cisco Router 3G 4G Modem Firmware upgrade
Router#conf t
Router#service internal
Router#Test cellular 0 modem-power-cycle
I hope that i will help someone.
Archive for Scripts
I hope that i will help someone.
If your having issues sending email to outlook / hotmail you can use the below form to submit a support request.
https://go.microsoft.com/fwlink/?LinkID=614866
After plugging in USB drives on a Xenserver sometimes the drive goes missing.
1.) modprobe -r usb_storage
2.) modprobe usb_storage
and its back.
URL: https://discussions.citrix.com/topic/278640-usb-drive-no-longer-seen-as-removable-storage-after-reboot/
Press and hold the 0 key for 10 seconds then simultaneously press START.
You will then be asked to enter a code. Type “6789” and Enter.
That will put you into UI Diagnostics. This will work for both machines and all Xerox machines that use the Connect Key Software.
Most will take you directly into the diagnostics screen. Some models you will be required to do the following after entering the code:
Press the Machine Status button.
Select the Tools Tab.
Scroll down to Maintenance / Diagnostics.
find /home/path -maxdepth 9 -type f -name “*.bck” -delete
Here are some sample URLS you might use for reference:
https://*.Contoso.com
http://*.dns.live.com
*.microsoft.com
https://172.169.4.6
It seems with some modems when running NAT and VOIP the need rPORT to be enabled or disabled to fix the issue of the local IP showing as the external IP address.
I installed some new Fanvil X5 Phones at a customer and i needed to have some BLF keys as Park Slots and Presence for them.
If you set the DSS key to memory Then put in “park+*5901” in the value and set the SubType to BLF/New Call.
All done.
After cloning a SSD for a customer it wouldn’t boot after running the normal
after spending time looking in to this issue i found a forum post that fixed it right up.
Firstly, boot from a UEFI Windows 8/10 recovery disk (CD/DVD/USB) – I found that the automated recovery process didn’t find the correct Windows partition, nor when I managed to add it to BCD settings would it make it reliably bootable e.g. using BCDEDIT I got it to find and launch the Windows partition but it refused to cold boot or would not “keep” the settings after a 2nd reboot or power off.
Go into the Advanced options and run the Command Prompt.
Enter diskpart
to use the DiskPart tool to ensure you have all the right partitions and to identify your EFI partition – the key thing here is that your EFI partition is formatted as FAT32:
DISKPART> sel disk 0
Disk 0 is now the selected disk.
DISKPART> list vol
Volume ### Ltr Label Fs Type Size Status Info
---------- --- ----------- ----- ---------- ------- --------- --------
Volume 0 E DVD-ROM 0 B No Media
Volume 1 C NTFS Partition 195 GB Healthy Boot
Volume 2 WINRE NTFS Partition 400 MB Healthy Hidden
Volume 3 FAT32 Partition 260 MB Healthy System
Then assign a drive letter to the EFI partition:
DISKPART> sel vol 3
Volume 3 is the selected volume.
DISKPART> assign letter=b:
DiskPart successfully assigned the drive letter or mount point.
Exit DiskPart tool by entering exit
and at the command prompt run the following:
cd /d b:\EFI\Microsoft\Boot\
bootrec /fixboot
Delete or rename the BCD file:
ren BCD BCD.bak
Use bcdboot.exe
to recreate BCD store:
bcdboot c:\Windows /l en-gb /s b: /f ALL
The /f ALL
parameter updates the BIOS settings including UEFI firmware/NVRAM, /l en-gb
is to localise for UK/GB locale. The localisation defaults to US English, or use en-US.
Reboot and cross your fingers.
Source http://superuser.com/questions/460762/how-can-i-repair-the-windows-8-efi-bootloader