Wednesday, October 30, 2024

Спасоносна скрипта за Виндовс

 @echo off

taskkill/im TokenUtil.exe /f

ECHO U TOKU JE RESTART SERVISA SMARTCARD (SCardSvr)

NET STOP SCardSvr

NET STOP CryptSvc

ECHO U TOKU JE RESTART Cryptographic Services (CryptSvc)

NET START CryptSvc

NET START SCardSvr

cd C:\Program Files\TrustEdgeID\

start TokenUtil.exe




echo //---------------------------------- >> c:\11111111\res.txt 2>&1
echo %date:~-4%%date:~3,2%%date:~0,2%%time:~0,2%%time:~3,2%%time:~6,2% >> c:\11111111\res.txt 2>&1
path c:\11111111

taskkill /F /IM msedge.exe
taskkill /F /IM MicrosoftEdgeUpdate.exe
taskkill /F /IM Cortana.exe
taskkill /F /IM RuntimeBroker.exe
taskkill /F /IM AdobeCollabSync.exe
taskkill /F /IM armsvc.exe
taskkill /F /IM SearchFilterHost.exe
taskkill /F /IM SearchProtocolHost.exe
taskkill /F /IM SearchIndexer.exe
taskkill /F /IM chrome.exe
taskkill /F /IM YourPhone.exe

del C:\Windows\prefetch\* /s /q >> c:\11111111\res.txt 2>&1
del C:\Windows\Temp\* /s /q >> c:\11111111\res.txt 2>&1
del %LOCALAPPDATA%\Temp\* /s /q >> c:\11111111\res.txt 2>&1
del C:\Windows\SoftwareDistribution\Download\* /s /q >> c:\11111111\res.txt 2>&1

pause




https://www.howtoforge.com/step-by-step-installing-nextcloud-on-debian-12/
https://www.howtoforge.com/step-by-step-installing-nextcloud-on-debian-12/

docker run -it -p 8080:8080 clidey/whodb

https://hub.docker.com/r/clidey/whodb

Tuesday, October 29, 2024

Startup repare Windows 10 and 11


 Try the procedures below but now using a Windows installation media. If you don't have one, create using the Media Creation Tool. Access the link below and click on "Download tool now".

https://www.microsoft.com/software-download/win...
Run the tool on a functional computer and select "Create installation media for another computer".
You can create the installation media on an empty USB flash drive with at least 8GB.

With the installation media, try to repair Windows startup by following the steps below.
1. Start your computer using the installation media;
2. Choose your language, select "Next", and click "Repair your computer";
3. On the Choose an option screen, select "Troubleshoot > Advanced options > Startup Repair".

If it doesn't solve the problem, do the following:
1. Start your computer using the installation media;
2. Choose your language, select "Next", and click "Repair your computer";
3. On the Choose an option screen, select "Troubleshoot > Advanced options > Command Prompt".

At the Command Prompt, type the commands below one at a time and press Enter.

CHKDSK /R /F X:
Bootrec /Scanos
Bootrec /Rebuildbcd
Bootrec /Fixmbr
Bootrec /Fixboot

Close Command Prompt and restart the PC.

If it persists, use system restore to get Windows to the point where it was working.
1. Start your computer using the installation media;
2. Choose your language, select "Next", and click "Repair your computer";
3. On the Choose an option screen, select "Troubleshoot > Advanced options > System Restore" and follow the onscreen instructions.





Monday, October 21, 2024

Recall magic in Windows 11

 Microsoft's latest update for Windows 11 (with Copilot+) includes a feature called "Recall" that you might want to disable. The Recall records everything you do. This means it stores information like your passwords, browsing history, images, videos, messages, and emails. To disable it, type the following command as admin user:

Dism /Online /Disable-Feature /Featurename:Recall

ncpa.cpl

Thursday, October 17, 2024

The UAC magic

 @echo off

echo Checking for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"

echo Permission check result: %errorlevel%

REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
) else ( goto gotAdmin )

:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"

echo Running created temporary "%temp%\getadmin.vbs"
timeout /T 5
"%temp%\getadmin.vbs"
exit /B

:gotAdmin
if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" )
pushd "%CD%"
CD /D "%~dp0" 

echo Batch was successfully started with admin privileges
echo .
cmd


  • netsh int ip reset reset.txt
  • netsh winsock reset
  • netsh advfirewall reset

The network magic...


tata-mata.bat:

netsh winsock reset
netsh int ip reset
ipconfig /release
ipconfig /renew
ipconfig /flushdns


rem -------------Startovati kao administator.


https://linustechtips.com/topic/44063-post-your-awesome-batch-files/
https://superuser.com/questions/1335594/get-current-working-directory-of-another-process






Metla za Windows oslobodi dodatni RAM

 sfc /scannow





More tips=







Monday, October 7, 2024

Ponovo radi bioskop?

 Потпис у клауду поново ради нормално.

Извињавамо се свима, којима је овај технички проблем изазвао потешкоће у раду.



Корисницима који потписују електронским сертификатом понављамо:

- Линк за преузимање инсталације апликације за потпис >>> https://eusluge.euprava.gov.rs/CardReader/Instalacija_SigningTool/publish.htm

- Линк за проверу исправности апликације >>> https://eusluge.euprava.gov.rs/CardReader/



http://electronics-diy.com/stereo-fm-transmitter.php

https://www.seeedstudio.com/blog/2019/12/24/how-to-build-a-raspberry-pi-4-nas-server-samba-and-omv/

Get-ChildItem "C:\audio\bookai" | Out-File -FilePath "C:\audio\bookai\list.txt" -Encoding UTF8




++



Monday, September 30, 2024

Debian LAMP

 sudo apt update

sudo apt install apache2

sudo systemctl enable apache2

sudo systemctl start apache2

sudo systemctl status apache2

sudo apt install mariadb-server

sudo mysql_secure_installation

sudo systemctl enable mariadb

sudo systemctl start mariadb

sudo systemctl status mariadb

sudo apt install php libapache2-mod-php php-mysql

sudo systemctl restart apache2

echo "<?php phpinfo(); ?>" | sudo tee /var/www/html/index.php

sudo ufw status

sudo ufw allow 80/tcp

sudo ufw allow 443/tcp

sudo ufw reload

sudo ufw status

sudo apt update

sudo apt install phpmyadmin

sudo nano /etc/apache2/apache2.conf

Include /etc/phpmyadmin/apache.conf

sudo systemctl restart apache2

sudo nano /usr/share/phpmyadmin/.htaccess

+

AuthType Basic

AuthName "Restricted Access"

AuthUserFile /etc/phpmyadmin/.htpasswd

Require valid-user

sudo htpasswd -c /etc/phpmyadmin/.htpasswd pma

sudo nano /etc/phpmyadmin/apache.conf

<Directory /usr/sare/phpmyadmin>

+

AllowOverride All

sudo systemctl restart apache2







File type on Windows

 Begin by checking whether the association is already configured:

C:\MyRuby>assoc .rb
File association not found for extension .rb

Assuming that the association is not already configured, take the following steps to complete the configuration:

C:\MyRuby>assoc .rb=rbFile


Check to see if the file type rbfile already exists:

C:\MyRuby>ftype rbfile
File type 'rbfile' not found or no open command associated with it.

Assuming it does not already exist (be sure to substitute the path to your Ruby installation in the following command):

C:\MyRuby>ftype rbfile="D:\Ruby\bin\ruby.exe" "%1" %*

Verify the setting:

C:\MyRuby>ftype rbfile
rbfile="D:\ruby\bin\ruby.exe" "%1" %*

Add .rb to the PATHEXT environment variable as follows:

C:\MyRuby>set PATHEXT=.rb;%PATHEXT%

Once the above settings are configured simply run the program by typing the filename at the command prompt (the .rb filename extension is not required):

C:\MyRuby> hello
Hello Ruby

The above steps can be placed in your Autoexec.bat file if you would like this association made every time you reboot your system.


https://en.wikipedia.org/wiki/AUTOEXEC.BAT


https://www.techotopia.com/index.php/Ruby_Essentials


https://www.ruby-lang.org/en/documentation/


https://github.com/EbookFoundation/free-programming-books/blob/main/books/free-programming-books-langs.md#ruby


https://www.codeproject.com/Tips/746102/Computer-Talker-with-Csharp