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.
@jimrobin10 күн бұрын
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.
@CLASHSARADR72210 күн бұрын
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
@sccmguru159423 күн бұрын
I need some help
@sccmguru159423 күн бұрын
Great content
@sccmguru159423 күн бұрын
Can I have your contact sir
@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Ай бұрын
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.
@NotificheACP2 ай бұрын
U did forget rule n°1, enable MFA! I use it everywhere with SSH connections
@CodeDotCarter2 ай бұрын
Thank you
@muhamadfadhil95012 ай бұрын
then other people using shown code above to decrypt can see the original code as well
@LinoCasu2 ай бұрын
Module not found ...
@stevenspring98892 ай бұрын
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_official2 ай бұрын
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.
@aiatecson59482 ай бұрын
Do I need to install Python software?
@toukka4Ай бұрын
Maybe you should reconsider the whole coding thing if that is a serious question
@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.
@MrElondil3 ай бұрын
Like this. Nice and concise. Thanks
@jasonfreeman80223 ай бұрын
Polling is terrible. You missed an opportunity to discuss Wait-Job.
@waqar30003 ай бұрын
is it possible to get date in 1-Aug-2024 format ?
@ivanmartinson3 ай бұрын
Amazing video thank you :)
@sysadmin17373 ай бұрын
I was the thousend follower of your channel ! keep it up mate
@itprotoday_official3 ай бұрын
Cheers!
@lhammonds3 ай бұрын
## 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()
@fleity5 ай бұрын
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.
@andreampere1005 ай бұрын
Cant this be decrypted to get original code?
@satyamanikanta31385 ай бұрын
Powershell module required to import for GPO changes ..???
@chrisogle0016 ай бұрын
Great video! I just started working with PowerShell and I think this will be a good solution for a few projects. Thanks!
@TheRambler74806 ай бұрын
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_official6 ай бұрын
@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."
@vanyalushbaugh65406 ай бұрын
Promo>SM
@shadowcipher40686 ай бұрын
Nice. Thanks.
@TechnicalTerry6 ай бұрын
Why didn’t Windows freak out because you were running an unsigned exe file?
@itprotoday_official6 ай бұрын
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."
@davidocchiuzzo18026 ай бұрын
Where do I get a dark web job
@Azzuray7 ай бұрын
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"
@leptoid7 ай бұрын
Why did you make $image an array when it only had a single value?
@TheMarkGross7 ай бұрын
Very Useful thanks
@MarcGarcia-i9r8 ай бұрын
Nice explanation. Thank you.
@raghavmandelia53698 ай бұрын
Thank You
@passarodoparaiso66328 ай бұрын
Thank you!!!
@خالدعبدالله-ج7غ5ي8 ай бұрын
Amazing, thank you.
@خالدعبدالله-ج7غ5ي9 ай бұрын
I always press the Like Button before watching, so thank you.
@خالدعبدالله-ج7غ5ي9 ай бұрын
thank you man.
@NeilHaran9 ай бұрын
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.
@jamesmiscellaneous9 ай бұрын
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.
@jameskirk89049 ай бұрын
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_2110 ай бұрын
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
@evan50823410 ай бұрын
Great information.
@hangugeohaksaeng10 ай бұрын
I'm coming from a bash background. Do people actually type out these long names all the time? Get-ChildItem? Rather than just "ls" ?
@jbx300012 ай бұрын
you can use the get-childitem alias instead --> gci
@osoriomatucurane951110 ай бұрын
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.
@abuelkheirshorts25211 ай бұрын
Thank you
@xrafter11 ай бұрын
Start-youtube?
@tobor5811 ай бұрын
Short sweet understandable Thank you
@Tobsson11 ай бұрын
And after all that you build a CLI tool so set flags with paths for even quicker navigation.
@bseddonmusic111 ай бұрын
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 Жыл бұрын
just used this video thank you got sir worked perfectly