Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Release+Source] Windows Application Unfreezer! Vista/XP Only! Working [/Release]
#1
Hey guys, I am proud to be releasing an application I made to stabilize windows processes in order to create something (Not Responding) to a responding window, this can help you if your virus scan is not responding and before it crashes pull this out and you can simply unfreeze it. This works for Vista/XP only. Message to Windows 7 users (myself), I have enabled a OS self-safety disable feature in the application if perhaps you decide to open it so it will disable itself and close the application automatically to prevent errors and complaints in feedback... Big Grin

Inspired by: http://www.supportforums.net/showthread.php?tid=1091

Rate thread please on the program... Big GrinDD

I basically simplified the process into an application.

Download Application UnfreezR Here:
Download Application UnfreezR

[Image: fb01eabb2529898db06e722e20195345.png]

Source Code:
Code:
Public Class Form1
    Dim charactersDisallowed As String = ",<>;   '{}[])(*!~`|/ç▲ìα▲╜Ä╤ZÆ╘¦«¨/*>?<|©÷ ¢¡¬­®¯°±.²³´µ¶·¹£¤¥»¼½¾¿"
    Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
        Dim theText As String = TextBox1.Text
        Dim Letter As String

        For x As Integer = 0 To TextBox1.Text.Length - 1
            Letter = TextBox1.Text.Substring(x, 1)
            If charactersDisallowed.Contains(Letter) Then
                theText = theText.Replace(Letter, String.Empty)
            End If
        Next
        TextBox1.Text = theText
        TextBox1.Select(TextBox1.Text.Length, 0)
    End Sub
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        If My.Computer.Info.OSFullName.Contains("7") Then
            Me.Text = "Disabled, failure to function on Windows 7."
            Me.Enabled = False
            CloseApp.Enabled = True
            MsgBox("Closing Application in 10 seconds due to failure to function on Windows 7.", 48, "OS Safety Feature")
        End If
    End Sub

    Private Sub Startthat_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Startthat.Click
        Try
            If Process.GetProcessesByName(TextBox1.Text).Length > 0 Then
                status.ForeColor = Color.Lime
                status.Text = "Currently Unfreezing the Process"
                System.Diagnostics.Process.Start(TextBox1.Text)
            Else
                status.ForeColor = Color.Red
                status.Text = "Process Undefined."
            End If
        Catch ex As Exception
        End Try
    End Sub

    Private Sub CloseApp_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CloseApp.Tick
        End
    End Sub

    Private Sub LinkLabel1_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel1.LinkClicked
        Process.Start("http://www.supportforums.net/member.php?action=profile&uid=4502")
    End Sub
End Class

*Please give me credits if you use my code anywhere.*

Don't forget to say thanks you guys! Did I mention, Enjoy?!
[Image: t5BWm.png]
Reply
#2
You must be a very good coder. Thanks for the share. This will sure become handy.
Reply
#3
Wow that looks very cool, great coding skills i must add
Reply
#4
This is simply...incredible.... Thumbsup
Reply
#5
Cool share dude Smile
Keep it up! Smile
Reply
#6
BUMP

Come on this is the real shiz guys!
[Image: t5BWm.png]
Reply
#7
Thanks for the source code! You are indeed releasing a lot of great programs. Keep it up!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [Release] Guidtech [Better then HWID][WITH VB FILES!] The-One 5 6,676 08-07-2015, 06:18 AM
Last Post: darknessxk
  [Release] Password Enhancer v1.0 [/Release] Resistance 11 5,264 09-29-2013, 08:58 PM
Last Post: Resistance
  [Release] Print Spooler Utility euverve 0 940 03-26-2013, 08:52 AM
Last Post: euverve
  [Release] USB Drive Defender euverve 0 1,222 03-22-2013, 06:21 AM
Last Post: euverve
  [Release] Whois+ Fragma 24 4,103 11-25-2012, 05:45 AM
Last Post: Ixam

Forum Jump:


Users browsing this thread: 1 Guest(s)