A program that replaces Microsoft Edge and Bing in the start menu search.
Currently, with Firefox and DuckDuckGo (in the future, it will be configurable).
- Download the newest EXE from the release section.
- Move it to a folder of your choice (do not move the EXE after execution).
- Run the EXE via double-click. There will be no response.
- Navigate to your chosen folder for the EXE.
- Open the advanced context menu via
shift + right-click
and click Open CMD/Powershell here. - Type
./edge-fixer.exe uninstall
and enter. There should be positive feedback.
# install new rust toolchain
$ rustup target add x86_64-pc-windows-gnu
# build the exe
$ cargo build --target=x86_64-pc-windows-gnu --release
# install dependencies
$ sudo apt install openssl osslsigncode
# create signing certificate (if you dont own one)
$ openssl req -x509 -newkey rsa:4096 -keyout cert/key.pem -out cert/cert.pem -sha256 -days 365
# signing the exe
$ osslsigncode sign -certs cert/cert.pem -key cert/key.pem \
-n "Edge Fixer" -i https://gitlab.com/Captainpast \
-t http://timestamp.digicert.com \
-in target/x86_64-pc-windows-gnu/release/edge-fixer.exe -out edge-fixer-signed.exe