2024 IT Operations Trends
4:18
10 ай бұрын
2024 Cloud Computing Trends
6:11
10 ай бұрын
Пікірлер
@spiteman
@spiteman 5 күн бұрын
I do the same ~2 months ago but also use compression. In my case I implement json file only, with length 2500 bytes, but in this case compression helps me with it.
@jimrobin
@jimrobin 10 күн бұрын
Thank you so much! Very helpful and just the information that I was looking for. I was using Windows 11 but there was no difference except for the bit at the end at "formatting". Windows 11 graphical user interface kicked in on top of Powershell just informing my that I have to format my new drive before I can use it - so I stuck with it and it worked fine.
@CLASHSARADR722
@CLASHSARADR722 10 күн бұрын
why my non malicious code is being showed as virus when iam creating exe from it i tried to create exe of empty ps1 file still it said its a virus
@sccmguru1594
@sccmguru1594 23 күн бұрын
I need some help
@sccmguru1594
@sccmguru1594 23 күн бұрын
Great content
@sccmguru1594
@sccmguru1594 23 күн бұрын
Can I have your contact sir
@MarkC-k9y
@MarkC-k9y Ай бұрын
Unless I am missing something, you recommended that we use a password when compiling our ps1 to exe. However, I did not see it explained how to do that. How do you do that? I want to protect my source code. Thanks.
@Practical-IT
@Practical-IT Ай бұрын
A few things... 1. You can use CTRL+L to clear your screen and save some keystrokes. This also works on Windows (in PowerShell) and on macOS 2. Changing the port number is nothing more than Security through Obscurity. Changing the port will do nothing other than slow down the most unskilled of script kiddies 3. You can also add to the sshd_config file a parameter AllowGroups and then specify a group you have created such as ssh-users and then only users in that group will be able to login via ssh As an aside, you may want to use the ssh client built into Windows to connect to the server and show larger text rather than just showing the whole VMWare window.
@NotificheACP
@NotificheACP 2 ай бұрын
U did forget rule n°1, enable MFA! I use it everywhere with SSH connections
@CodeDotCarter
@CodeDotCarter 2 ай бұрын
Thank you
@muhamadfadhil9501
@muhamadfadhil9501 2 ай бұрын
then other people using shown code above to decrypt can see the original code as well
@LinoCasu
@LinoCasu 2 ай бұрын
Module not found ...
@stevenspring9889
@stevenspring9889 2 ай бұрын
PowerShell is deeply integrated with .NET, and many of its core functionalities are built upon .NET classes and libraries. So, when you're writing PowerShell scripts, you're essentially interacting with .NET behind the scenes. The only difference between native and your second example is that you are calling .NET explicitly to handle specific use cases, etc. what you were saying is either misleading or misinformed, but knowing how these interactions work is important for the success of up and coming PowerShellers.
@itprotoday_official
@itprotoday_official 2 ай бұрын
Thanks for your feedback! You’re absolutely right that PowerShell is deeply integrated with .NET-many of its core functionalities are built on .NET, so even when using native cmdlets, we’re working with .NET behind the scenes. This Short's goal was to highlight the scenarios where calling .NET explicitly can be useful, especially for features that PowerShell doesn’t natively support, like text-to-speech. I appreciate that you pointed this out, and it’s a good reminder that understanding how PowerShell interacts with .NET is important for taking full advantage of both.
@aiatecson5948
@aiatecson5948 2 ай бұрын
Do I need to install Python software?
@toukka4
@toukka4 Ай бұрын
Maybe you should reconsider the whole coding thing if that is a serious question
@sinan_islam
@sinan_islam Ай бұрын
If you prefer Statistical Machine Learning use R. If you prefer black boxes that make predictions without producing any useful information use Python.
@MrElondil
@MrElondil 3 ай бұрын
Like this. Nice and concise. Thanks
@jasonfreeman8022
@jasonfreeman8022 3 ай бұрын
Polling is terrible. You missed an opportunity to discuss Wait-Job.
@waqar3000
@waqar3000 3 ай бұрын
is it possible to get date in 1-Aug-2024 format ?
@ivanmartinson
@ivanmartinson 3 ай бұрын
Amazing video thank you :)
@sysadmin1737
@sysadmin1737 3 ай бұрын
I was the thousend follower of your channel ! keep it up mate
@itprotoday_official
@itprotoday_official 3 ай бұрын
Cheers!
@lhammonds
@lhammonds 3 ай бұрын
## Examples using different voices. One of the commands below will show what voices are installed. Add-Type -AssemblyName System.Speech $Zira = New-Object System.Speech.Synthesis.SpeechSynthesizer $Zira.SelectVoice('Microsoft Zira Desktop') $David = New-Object System.Speech.Synthesis.SpeechSynthesizer $David.SelectVoice('Microsoft David Desktop') $Hazel = New-Object System.Speech.Synthesis.SpeechSynthesizer $Hazel.SelectVoice('Microsoft Hazel Desktop') Write-Host "Show installed voices on the system:" $Zira.GetInstalledVoices().VoiceInfo | Format-Table Write-Host "${env:USERNAME}, the current time is $((Get-Date).ToShortTimeString())" $Hazel.Rate = 4 ## -10 is slowest, 10 is fastest. $Hazel.Speak("${env:USERNAME}, the current time is $((Get-Date).ToShortTimeString())") $Zira.Dispose() $David.Dispose() $Hazel.Dispose()
@fleity
@fleity 5 ай бұрын
Multiple times now I've wanted executables to enforce starting Unity projects with certain parameters and make it super seamless for the end user. This seams to be a very neat, practical and small solution for that, thanks.
@andreampere100
@andreampere100 5 ай бұрын
Cant this be decrypted to get original code?
@satyamanikanta3138
@satyamanikanta3138 5 ай бұрын
Powershell module required to import for GPO changes ..???
@chrisogle001
@chrisogle001 6 ай бұрын
Great video! I just started working with PowerShell and I think this will be a good solution for a few projects. Thanks!
@TheRambler7480
@TheRambler7480 6 ай бұрын
Maybe im missing something, but why wouldnt I just coninute to use iexpress? Iexpress is built into Windows so no additional installs needed, and it can make exes of anything not just powershell scripts. Reinventing the wheel here?
@itprotoday_official
@itprotoday_official 6 ай бұрын
@TheRambler7480, great question. Here's Brien Posey's response: "Iexpress is designed for building self-extracting executables. For instance, if you wanted to build an installer for an application, you would use Iexpress. To the best of my knowledge, you can’t use it to convert a PowerShell script into an executable. The best that it can do is to create a self extracting package that includes a PowerShell script and a command to execute it."
@vanyalushbaugh6540
@vanyalushbaugh6540 6 ай бұрын
Promo>SM
@shadowcipher4068
@shadowcipher4068 6 ай бұрын
Nice. Thanks.
@TechnicalTerry
@TechnicalTerry 6 ай бұрын
Why didn’t Windows freak out because you were running an unsigned exe file?
@itprotoday_official
@itprotoday_official 6 ай бұрын
Hi @TechnicalTerry, thanks for your question. We checked with Brien Posey, and here's what he said: "I don’t know why Windows didn’t freak out over an unsigned EXE. PS2EXE does not sign files, so I am not sure why Windows would not generate some sort of warning message."
@davidocchiuzzo1802
@davidocchiuzzo1802 6 ай бұрын
Where do I get a dark web job
@Azzuray
@Azzuray 7 ай бұрын
We can also notice that with the bits transfer service the Date of the file created is wrong, or at least different from the one download from "IWR/InvokeWebRequest" , Probably the "True Creation Date from the PDF, and not the "LastWritedDate"
@leptoid
@leptoid 7 ай бұрын
Why did you make $image an array when it only had a single value?
@TheMarkGross
@TheMarkGross 7 ай бұрын
Very Useful thanks
@MarcGarcia-i9r
@MarcGarcia-i9r 8 ай бұрын
Nice explanation. Thank you.
@raghavmandelia5369
@raghavmandelia5369 8 ай бұрын
Thank You
@passarodoparaiso6632
@passarodoparaiso6632 8 ай бұрын
Thank you!!!
@خالدعبدالله-ج7غ5ي
@خالدعبدالله-ج7غ5ي 8 ай бұрын
Amazing, thank you.
@خالدعبدالله-ج7غ5ي
@خالدعبدالله-ج7غ5ي 9 ай бұрын
I always press the Like Button before watching, so thank you.
@خالدعبدالله-ج7غ5ي
@خالدعبدالله-ج7غ5ي 9 ай бұрын
thank you man.
@NeilHaran
@NeilHaran 9 ай бұрын
Using Quick create is easy, but it has the default size as 127 gigs. The normal way to create a linux virtual machine is problematic as the VM just won't start. It is like it is assuming a windows VM and not liking the linux one.
@jamesmiscellaneous
@jamesmiscellaneous 9 ай бұрын
This does work perfectly but cannot figure out how to get it working with the -key option so that the script can be decrypted on another device. @bulatgilfanov9311 thank you for -raw parameter.
@jameskirk8904
@jameskirk8904 9 ай бұрын
I've been trying to figure this out for two days. This was perfect. Exaplained exactly what I need to do and how it works. Thank you.
@_Wheels_21
@_Wheels_21 10 ай бұрын
I can run the program, but I can't create a shortcut. I have to go to the terminal and type in the full appimage every time to open the program. It gets pretty annoying
@evan508234
@evan508234 10 ай бұрын
Great information.
@hangugeohaksaeng
@hangugeohaksaeng 10 ай бұрын
I'm coming from a bash background. Do people actually type out these long names all the time? Get-ChildItem? Rather than just "ls" ?
@jbx30001
@jbx30001 2 ай бұрын
you can use the get-childitem alias instead --> gci
@osoriomatucurane9511
@osoriomatucurane9511 10 ай бұрын
That is awesome, it sheds lights into the solution to my dilema! I love R for data manipulation and I have invested a lot in ggplot2 for data visualization. Now busy with python for machine learning, pandas is great and it really shines whem it comes to data cleaning programatically! I am not in mood to invest in searborn/matplotlib again for datavisualization. I also love R Studio ide. If I can work with python/pandas in R studio, then I can go ahead with ggplot2 for that viz. That is the complementary I am looking for.
@abuelkheirshorts252
@abuelkheirshorts252 11 ай бұрын
Thank you
@xrafter
@xrafter 11 ай бұрын
Start-youtube?
@tobor58
@tobor58 11 ай бұрын
Short sweet understandable Thank you
@Tobsson
@Tobsson 11 ай бұрын
And after all that you build a CLI tool so set flags with paths for even quicker navigation.
@bseddonmusic1
@bseddonmusic1 11 ай бұрын
The second example to create a graphical calculator fails because the API request specified too few tokens (you can see the response terminated too soon). Do you know if there is an option to set a larger token window?
@Jacob-tl1ig
@Jacob-tl1ig Жыл бұрын
just used this video thank you got sir worked perfectly