Laptop turn on for 3 or 5 seconds and then off

Situation: The user can’t turn on his Laptop. It turn on for a few seconds and then it turn off.

Troubleshooting 1: Perform a power drain

  1. Shut down the computer.
  2. Unplug the computer from the wall socket.
  3. If the battery is removable, remove the battery and hold the Power button down for 15 seconds.
  4. If the battery is non-removable, while the computer is ON, hold the power button down and wait for the computer to shut down and still hold the power button down for another 15 seconds.
  5. Turn the computer ON and check.

Troubleshooting 2: It could hardware issue. Check Hard disk, RAM connection and motherboard.

Troubleshooting Graphics Card problems

  1. Make sure the drivers of the graphics card and monitor are all up to date.
  2. Graphics cards need to be properly seated in their PCI slots in order to work efficiently. Ensure that the video cable is fine and plugged in properly.
  3. Video display problems could be a monitor-related issue instead of the graphics card.
4. Check the ‘Device Status’ of your graphic card: Go to Device Manager> Display adapters.

5. Graphics card problems can be related to hardware or software.

6. High temperature can occur when the computer is stored in a poorly ventilated area or the ventilation outlets have been blocked. Use troubleshooting tools: GPU-Z, Heaven Benchmark tool,

7. Check Event viewer for any errors.

Workstation and Netlogon services won’t start after disabling SMB1

Situation: The client just upgraded their QNAP NAS. After that they can’t access QNAP on one of servers. They find the QNAP is setup to use SMB2 or above. So, they disable the SMB1 on the server. After restarting the server, Workstation and Netlogon services won’t start so that they can’t access network sharing and RDP doesn’t work.

Troubleshooting 1:

Workstation service is still depended on SMB. If you want to disable SMB1, you must allow SMB2/3 to function. These are what you want to do:

-flag SMB1 for disabled on the Server service.

-flag SMB2 for enabled on the Server service.
-changes the dependencies for the workstation service to no longer require SMB1 services (mrxsmb10).
-disables the mrxsmb10 service from starting.
-sets the mrxsmb20 service to auto-start

The right commands should look like this:

Set-itemproperty -path “HKLM:\System\CurrentControlSet\Services\LanmanServer\Parameters” SMB1 -Type Dword -Value 0 -Force
Set-itemProperty -path “HKLM:\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters” SMB2 -Type Dword -Value 1 -Force
Set-itemProperty -path “HKLM:\SYSTEM\CurrentControlSet\services\lanmanworkstation” -name “DependOnService” -value “Bowser”, “MRxSmb20”, “NSI” -type MultiString
Set-itemProperty -path “HKLM:\SYSTEM\CurrentControlSet\services\mrxsmb10” -name “Start” -type Dword -Value 4 -Force
Set-itemProperty -path “HKLM:\SYSTEM\CurrentControlSet\services\mrxsmb20” -name “Start” -type Dword -Value 2 -Force

Troubleshooting 2: Correct mrxsmb and mrxsmb20 registry HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services.

ErrorControl is a type REG_DWORD which specifies how to proceed if the driver fails to load or to initialize properly:

 Value  D e s c r i p t i o n 
 0  Ignore: If the driver fails to load or initialize, startup proceeds, and no warning message appears. 
 1  Normal: If the driver fails to load or initialize, startup proceeds, but a warning message appears. 
 2  Severe: If the driver fails to load or initialize, declares the startup as having failed and restarts by using the LastKnownGood control set. If startup is already using the LastKnownGood control set, continues startup. 
 3  Critical: If the driver fails to load or initialize, declares the startup as having failed and restarts by by using the LastKnownGood control set. If startup is already using the LastKnownGood control set, stops startup and runs a debugging program. 

ImagePath is a type REG_EXPAND_SZ that contains the full path to the executable. This entry is not used for network adapters.

ObjectName is a type REG_DWORD which contains the account name for services or the driver object that the I/O manager uses to load the device driver.

Start is a type REG_DWORD which specifies how the service is loaded or started. If the service is a Win32 service, the value of Start must be 2, 3, or 4. This value entry is not used for network adapters.

 Value  D e s c r i p t i o n 
 0  Boot: Loaded by kernel loader. Components of the driver stack for the boot (startup) volume must be loaded by the kernel loader. 
 1  System: Loaded by I/O subsystem. Specifies that the driver is loaded at kernel initialization. 
 2  Automatic: Loaded by Service Control Manager. Specifies that the service is loaded or started automatically. 
 3  Manual:. The service does not start until the user starts it manually, such as by using Services or Devices in Control Panel. 
 4  Disabled: Specifies that the service should not be started. 

Type is a type REG_DWORD that specifies what this object represents:

 Value  D e s c r i p t i o n 
 1  A kernel-mode device driver. 
 2  A file system driver. 
 4  A set of arguments for an adapter. 
 8  A file system driver service, such as a file system recognizer. 
 16 (0x10)  A Win32 program that runs in a process by itself. This type of Win32 service.can be started by the Service Controller. 
 32 (0x20  A Win32 program that shares a process. This type of Win32 service can be started by the Service Controller. 
 272 (0x110)  A Win32 program that runs in a process by itself (like Type16) and can interact with users. 
 288 (0x120)   A Win32 program that shares a process and can interact with users. 

For example

Troubleshooting 3: Run SFC /SCANNOW command to fix damaged system files.

Can’t start netlogon and Workstation services after Windows update

Last night we installed Windows update August security update (KB5005039). Now, Veeam backup and mapping to other server shared folders because we can’t start workstation and netlogon services. Also I can’t remote access to the server.
125098-update1.jpg

These are the dependencies.
125107-update2.jpg

Any suggestions?

Troubleshooting: 1. We can’t start Netlogon service because we can’t start Workstation service.

2. We can’t start the Workstation because the SMB 2.0 MiniRedirector service which failed to start.

3. The SMB 2.0 MiniRedirector service which failed to start because of the following error:
The service cannot be started, either because it is disabled or because it has no enabled devices associated with it

Refer to Event ID 7001 – The Workstation service depends on the SMB 2.0 MiniRedirector service which failed to start because of the following error:
The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.

Troubleshooting 1:

Workstation service is still depended on SMB. If you want to disable SMB1, you must allow SMB2/3 to function. These are what you want to do:

-flag SMB1 for disabled on the Server service.

-flag SMB2 for enabled on the Server service.
-changes the dependencies for the workstation service to no longer require SMB1 services (mrxsmb10).
-disables the mrxsmb10 service from starting.
-sets the mrxsmb20 service to auto-start

The right commands should look like this:

Set-itemproperty -path “HKLM:\System\CurrentControlSet\Services\LanmanServer\Parameters” SMB1 -Type Dword -Value 0 -Force
Set-itemProperty -path “HKLM:\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters” SMB2 -Type Dword -Value 1 -Force
Set-itemProperty -path “HKLM:\SYSTEM\CurrentControlSet\services\lanmanworkstation” -name “DependOnService” -value “Bowser”, “MRxSmb20”, “NSI” -type MultiString
Set-itemProperty -path “HKLM:\SYSTEM\CurrentControlSet\services\mrxsmb10” -name “Start” -type Dword -Value 4 -Force
Set-itemProperty -path “HKLM:\SYSTEM\CurrentControlSet\services\mrxsmb20” -name “Start” -type Dword -Value 2 -Force

Troubleshooting 2: Correct mrxsmb and mrxsmb20 registry HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services.

ErrorControl is a type REG_DWORD which specifies how to proceed if the driver fails to load or to initialize properly:

 Value  D e s c r i p t i o n 
 0  Ignore: If the driver fails to load or initialize, startup proceeds, and no warning message appears. 
 1  Normal: If the driver fails to load or initialize, startup proceeds, but a warning message appears. 
 2  Severe: If the driver fails to load or initialize, declares the startup as having failed and restarts by using the LastKnownGood control set. If startup is already using the LastKnownGood control set, continues startup. 
 3  Critical: If the driver fails to load or initialize, declares the startup as having failed and restarts by by using the LastKnownGood control set. If startup is already using the LastKnownGood control set, stops startup and runs a debugging program. 

ImagePath is a type REG_EXPAND_SZ that contains the full path to the executable. This entry is not used for network adapters.

ObjectName is a type REG_DWORD which contains the account name for services or the driver object that the I/O manager uses to load the device driver.

Start is a type REG_DWORD which specifies how the service is loaded or started. If the service is a Win32 service, the value of Start must be 2, 3, or 4. This value entry is not used for network adapters.

 Value  D e s c r i p t i o n 
 0  Boot: Loaded by kernel loader. Components of the driver stack for the boot (startup) volume must be loaded by the kernel loader. 
 1  System: Loaded by I/O subsystem. Specifies that the driver is loaded at kernel initialization. 
 2  Automatic: Loaded by Service Control Manager. Specifies that the service is loaded or started automatically. 
 3  Manual:. The service does not start until the user starts it manually, such as by using Services or Devices in Control Panel. 
 4  Disabled: Specifies that the service should not be started. 

Type is a type REG_DWORD that specifies what this object represents:

 Value  D e s c r i p t i o n 
 1  A kernel-mode device driver. 
 2  A file system driver. 
 4  A set of arguments for an adapter. 
 8  A file system driver service, such as a file system recognizer. 
 16 (0x10)  A Win32 program that runs in a process by itself. This type of Win32 service.can be started by the Service Controller. 
 32 (0x20  A Win32 program that shares a process. This type of Win32 service can be started by the Service Controller. 
 272 (0x110)  A Win32 program that runs in a process by itself (like Type16) and can interact with users. 
 288 (0x120)   A Win32 program that shares a process and can interact with users. 

For example

Troubleshooting 3: Run SFC /SCANNOW command to fix damaged system files.

Troubleshooting Pola Alto Firewall connectivity issue

Situation: The client configures Pola Alto Firewall failover. Now, they have a problem to access the AWS site to site VPN. They would like to know the reason.

Troubleshooting: 1. Go to Monitor>Logs>System.

2. Search for date and time which lost the connection, and Suntype eq VPN.

3. We do see critical under Severity on Tunnel 3 and 4, which indicates there is a connectivity issue.

4. We also see Severity low showing IKE phase-1 SA is down determined by DPD, which means PA firewall works fine and keeps sending traffics to other side.

.

5. After the a few minutes, it shows Tunnel 3 and 4 is up.

Conclusion:: PA Firewall works fine and it is other part issue.

Barracuda Backup Error: This may have been caused by a change to user settings or permissions at the data source or it may be that the target server is offline

Situation: The client has a problem to backup one of their servers using Barracuda Backup with this error: This may have been caused by a change to user settings or permissions at the data source or it may be that the target server is offline.

Troubleshooting: Run test software connection. It is successful. We fixed the problem by running these services: Background Intelligent Transfer Service, Barracuda Backup Agent, COM+Event System, Microsoft Software Shadow Copy Provider, Volume Shadow Copy services.

System Administrator interview questions

  1. Which port does SSH use?
  2. Port 21
  3. Port 22
  4. Port 25
  5. Port 443

Answer: B

  • Which command for Hop-by-Hop Analysis & Troubleshooting
  • IPCONFIG
  • Ping
  • Tracert
  • Net statistics

Answer: C.

  • Why do you receive this warning?
  1. Certificate issue
  2. Use HTTP instead
  3. You get virus
  4. DNS issue

Answer A.

  • You can’t open a website. However, ping IP works.
  • Website is down.
  • Internet is down
  • You should use IP instead of website name.
  • This is DNS issue.

Answer: D.

  • After opening attachment, you can’t open any files because of ransomed.
  • Pay money to hacker to  fix
  • Restore the file.
  • Disconnect the network.
  • Run Windows update

Answer: C.

  • The computer keeps rebooting by itself. What should you check?
  • Check Log file.
  • Reinstall Windows.
  • Check IPCONFIG.
  • Check Event viewer

Answer: E

  • After a Windows update, the user can’t login with Please wait….
  • Run anti-virus.
  • Re-install Windows update
  • Disconnect all external device except keyboard and mouse.
  • Run system restore.

Answer: C.

  • When assigning a Statistics IP address to a network device, which options you may have?
  • Type the statistics IP address in the web browser.
  • Run ipconfig /renew
  • Go to NIC to change adapter settings.
  • Use DHCP reservation.

Answer: D and D.

  • The new Server comes with two hard disks and your boss want a redundancy RAID.

Answer: C

  1. The new Server comes with four hard disks and your boss wants a high performance and security RAID.

A.           RAID 0

B.           RAID 1

C.           RAID 5

D.           RAID 6

E.            RAID 10.

F.            RAID 1+0

Answer: E and F.

  1. Your laptop (mylaptop) has joined a domain, mydomain. Which is options to login Local Windows Account instead of Domain account?
  2. .\username
  3. Username
  4. Mydomain\username
  5. Mylaptop\username

Answer: A and D.

  1. Your boss wants you to upload some secured files to a remote site. What may you use?
  2. FTP
  3. SFTP
  4. FTPS
  5. HTTPS

Answer: B, C and D

Office 365 Couldn’t install with Error code 0-2031 (17004)

Situation: When the client runs Office 365 update or Online repair, he may receive Couldn’t install with Error code 0-2031 (17004).

Troubleshooting: Download Microsoft Automatically Office Uninstallation Tool from this link: https://support.microsoft.com/en-us/office/uninstall-office-automatically-9ad57b43-fa12-859a-9cf0-b694637b3b05

uninstall office 365 and re-install it.