Death to _blank

Death to _blank

https://chromewebstore.google.com/detail/death-to-blank/gneobebnilffgkejpfhlgkmpkipgbcno

Websites are becoming annoying  with fresh tabs being open for every item your shopping for is clicked on.

Death to _blank opens links on the same tab.

 

Posted on January 27, 2024, 1:27 pm By
Categories: tech tips Tags:
Export quickaccess

Quick access data is save in path\file

%AppData%\Microsoft\Windows\Recent\AutomaticDestinations\f01b4d95cf55d32a.automaticDestinations-ms

 

Export windows share files

Batch file to:
extract mapped windows shares
exclude saving H:\
produce an import.bat  file to be used to remap them
only paths with spaces need to be wrapped around quotes “” manually.

 

@echo off
setlocal enabledelayedexpansion

del import_shares.bat /q

REM Run net use command and filter lines containing “\”

 

for /f “tokens=2*” %%A in (‘net use ^| find “\”‘) do (

:: remove h:\
if /i “%%A” neq “H:” (

REM Remove “Microsoft Windows Network” text
set “sharePath=%%B”
set “sharePath=!sharePath:Microsoft Windows Network=!”

REM Trim leading and trailing spaces
for /f “tokens=* delims= ” %%C in (“!sharePath!”) do set “sharePath=%%C”

REM Display the result
echo net use %%A !sharePath!
echo net use %%A !sharePath! /persistent:yes >> import_shares.bat
)

)

endlocal

TIMEOUT /T 10

Download any Windows ISO

Visit uppdump.net

Posted on October 26, 2023, 11:23 pm By
Categories: tech tips Tags:
Free Microsoft Word Excel Powerpoint

Press CTRL ALT SHIFT WINDOWS signed up for free web  office 365.

Posted on October 19, 2023, 7:17 am By
Categories: tech tips Tags:
Audio Downloader Prime + dirrty.remix.es

Grab Audio Downloader Prime chrome extension and it works on  https://dirrty.remix.es/

Posted on August 30, 2023, 5:41 pm By
Categories: tech tips Tags: ,
Bios Password Unlock

https://bios-pw.org/

Posted on July 17, 2023, 8:43 pm By
Categories: tech tips Tags: ,
Youtube to mp3 convertor

just ignore any popups …

https://ytmp3hub.com/

Posted on July 3, 2023, 4:30 pm By
Categories: tech tips Tags: ,
Decentralised chat options

Checking out options …

https://briarproject.org/ – no images , i think

https://berty.tech/

https://scuttlebutt.nz/ – this ones interesting but convoluted to setup

https://element.io/ – most polished

Posted on July 3, 2023, 1:55 pm By
Categories: tech tips Tags:
Dell command update via DOS, check if Crowdstrike or any program is installed via CMD, example.

:: //*************************************************************************************************
:: //
:: // Post – Automated installation of all post-build software.
:: //
:: // For Kantar by Juan Calderon
:: //
:: // Date: 11/10/2021
:: //
:: // Latest Update: 18/05/2021 — Changelog as follows:
:: // 1. No changes
:: //
:: //*************************************************************************************************

@echo off

@echo.
@echo *************************************************************************************
@echo — Remove c:\EnableBL —
@echo *************************************************************************************

rd c:\EnableBL /s /q

c:
cd C:\post

@echo.
@echo *************************************************************************************
@echo — Install CERT —
@echo *************************************************************************************

certutil.exe -addstore root netd2.cer

@echo.
@echo *************************************************************************************
@echo — Install regedits that stimulate BigFix —
@echo *************************************************************************************

::net stop besclient
::@echo Importing new BigFix client resource settings
::regedit /s “\bigfix\cpu_bind_config.reg”
::net start besclient

@echo.
@echo *************************************************************************************
@echo — Remove Forcepoint —
@echo *************************************************************************************
cscript remove_forcepoint.vbs

timeout 15

@echo.
@echo *************************************************************************************
@echo — Install Dell Power Manager —
@echo *************************************************************************************
MSIEXEC /i C:\post\DPM_Setup64_3_11_0.msi /qn

timeout 15

@echo.
@echo *************************************************************************************
@echo — Install Displaylink —
@echo *************************************************************************************

call “C:\post\DisplayLink_USB_Graphics_Software_for_Windows10.2 M4-EXE.exe” -silent

@echo.
@echo *************************************************************************************
@echo — Checking if CrowdStrike installed… —
@echo *************************************************************************************
wmic product get name, version, vendor | find “CrowdStrike”
IF %ERRORLEVEL% NEQ 1 (
@echo CrowdStrike check complete – found.
)
IF %ERRORLEVEL% NEQ 0 (
color 4
@echo CrowdStrike check complete – NOT FOUND.
@echo Installing it …
start c:\post\CrowdStrike\WindowsSensor.exe /install /quiet /norestart CID=03dec07bdbd24b1584d0b36e7000b2a2-9e
timeout 10

)

::call c:\post\!machine_name_rename.bat

@echo.
@echo *************************************************************************************
@echo — Install Dell Command Update, Firmware, Driver updates —
@echo *************************************************************************************
@echo Installing Dell Command Update
call “c:\post\DellCommandUpdate\Dell-Command-Update-Application_T97XP_WIN_4.6.0_A00.EXE” /S

timeout 15
@echo.
@echo.
@echo Checking for and installing firmware updates and drivers
@echo.
@echo Scanning for Updates
call “C:\Program Files (x86)\Dell\CommandUpdate\dcu-cli.exe” /scan -silent
@echo.
@echo Installing updates
call “C:\Program Files (x86)\Dell\CommandUpdate\dcu-cli.exe” /applyUpdates -silent -reboot=enable
@echo.
@echo Installing drivers
call “C:\Program Files (x86)\Dell\CommandUpdate\dcu-cli.exe” /driverInstall -silent -reboot=enable

 

@echo.
@echo *************************************************************************************
@echo — Finished, reset and manually check Dell Command update again, more Dell todo —
@echo *************************************************************************************

pause

shutdown /r -t 1

 

Posted on March 25, 2023, 2:21 pm By
Categories: tech tips Tags:

Next Page