Skip to main content

Posts

Showing posts from November, 2020

Shiba Inu Future Predictions

Shiba Inu is a relatively new cryptocurrency that has gained a lot of attention and popularity in a short period of time. The meme-based cryptocurrency was launched in August 2020 and has since become one of the most talked-about cryptocurrencies in the market. With its rapidly growing community and unique branding, many investors and traders are curious about the future of Shiba Inu. In this article, we will discuss the future predictions of Shiba Inu and the factors that could impact its growth. The first thing to consider when making predictions about Shiba Inu's future is the current state of the cryptocurrency market. The market is highly volatile, and the prices of cryptocurrencies can fluctuate rapidly due to various factors such as regulatory changes, global economic conditions, and investor sentiment. Shiba Inu is not immune to these fluctuations, and its price has been known to rise and fall quite rapidly. Despite the volatility of the cryptocurrency market, there are a f...

Install SQL Server 2019 Developer Edition on Windows Server 2019

Introduction Microsoft is developing a full-featured free version of the SQL Server Developer edition, licensed for use in a non-production environment as a creation and test database. On Windows Server 2019, we are going to install SQL Server 2019 Developer Version. It is supported for operating systems such as macOS, Ubuntu, SLES, RHEL, and Windows. Before we start, head over to the  Microsoft SQL Server Downloads page  and download SQL Server 2019 Developer Edition. Step 1: Run Install Application Navigate to the directory/folder where the application was downloaded, then double-click it to begin the installation process. Step 2: Select Custom Installation After you've got chosen the custom installation, click on “ Install “. Allow the application to download and install packages. You have the “ Basic “, “ Custom ” and “ Download Medium ” installation types. I recommend you select “ Custom ” to tweak your installation of SQL Server 2019 Developer Edition on Windows Serv...

List Picture Names Of A Folder In Excel With VBA

List Picture Names Of A Folder In Excel With VBA In Excel, there's no built-in function which will automatically list all picture names of a folder you select during a cell of a sheet, but here I even have a VBA code which may assist you quickly solve this job. 1. In Excel, then press Alt + F11 keys to open Microsoft Visual Basic for Applications window. 2. In popping window, click Insert > Module to create a new Module script. 3. Copy below code and paste them to the new Module script window. Sub PictureNametoExcel() 'UpdatebyExtendoffice  Dim I As Long     Dim xRg As Range     Dim xAddress As String     Dim xFileName As String     Dim xFileDlg As FileDialog     Dim xFileDlgItem As Variant     On Error Resume Next     xAddress = ActiveWindow.RangeSelection.Address  Set xRg = Application.InputBox("Select a cell to place name list:", "Kutools For Excel", Address, , , , , 8)   ...

Domain Time Sync

Run this on Domain Controller to sync the time: "reg add HKLM\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\VMICTimeProvider /v Enabled /t reg_dword /d 0" Run this on PDC w32tm /config /manualpeerlist:"0.pool.ntp.org,0x1" /syncfromflags:MANUAL /reliable:yes    w32tm /config /update    w32tm /resync  w32tm /resync /rediscover Run these 2 commands at any time on any server to see their source and when they last updated, these will be used throughout this exercise to make sure your PDC and other servers are getting time from the right place w32tm /query /status   w32tm /query /source Then run this on all DC except the PDC , it will make them look at the PDC for time and resync to it w32tm /config /syncfromflags:DOMHIER /update  net stop w32time  net start w32time  w32tm /resync /force