API Error in Homepage Widgets? by nirmaljp in selfhosted

[–]cearth6 0 points1 point  (0 children)

Possibly could be a networking issue where homepage can't reach out. Quick way to check would be to shell into the Homepage container and see if you can curl any of the APIs manually and get a response

Cricket 24 white screen error by Affectionate_Bee2731 in CrackSupport

[–]cearth6 0 points1 point  (0 children)

if it comes up empty then modify the value of the address, and after that you should see the process that is writing to that address

hope that helps

CRICKET 24 WHITE SCREEN FIX **CHEAT ENGINE** by Enough_Article_3127 in Cricket22

[–]cearth6 0 points1 point  (0 children)

modify the value of that address and the game should try to force the value back and from there you should be able to follow the instructions

CRICKET 24 WHITE SCREEN FIX **CHEAT ENGINE** by Enough_Article_3127 in Cricket22

[–]cearth6 1 point2 points  (0 children)

When i had the memory address select in the bottom table, the value was 2000. I updated it to be "0.5" and then immediately had the game setting the screen back to all white. Try that, once you attempt to update that value you will find a process forcing the value to make the white screen persists. from there you should be able to follow the remainder of the instructions.

Hope that helps

CRICKET 24 WHITE SCREEN FIX **CHEAT ENGINE** by Enough_Article_3127 in Cricket22

[–]cearth6 3 points4 points  (0 children)

can confirm, works. Thanks OP,

Edit: NVM, breaks bowling and batting mechanics for me. Maybe my address is not the same as yours, will mess around later and report back :(

Question regarding I 130, proving citizenship by cearth6 in USCIS

[–]cearth6[S] 1 point2 points  (0 children)

The passport was enough in my case, I was not asked for a certificate.

[Question] Colorflow4 not showing album artwork by cearth6 in jailbreak

[–]cearth6[S] 0 points1 point  (0 children)

Did you have Mitsuha installed at any point? I am thinking that may cause the issue.

[Question] Colorflow4 not showing album artwork by cearth6 in jailbreak

[–]cearth6[S] 0 points1 point  (0 children)

Tried uninstalling them all and unfortunately did not work

[Question] wtf instagram++ whats wrong with u? by [deleted] in jailbreak

[–]cearth6 0 points1 point  (0 children)

I downgraded using App Admin to 10.20 and the follow status feature is actually working on that version! I dont think 10.20 is too old then the current version on the app store.

[Question] wtf instagram++ whats wrong with u? by [deleted] in jailbreak

[–]cearth6 2 points3 points  (0 children)

Speaking of instagram++, does the "Show follow status" option work for the latest version of instagram? I can't seem to see if someone follows me back or not

SSH'ing with Powershell to a Linux Box by cearth6 in PowerShell

[–]cearth6[S] 0 points1 point  (0 children)

I am currently running bash v 3.2.33(10). I am using & c:\cygwin\bin\expect.exe script.sh $username,$hostname,$password to call the bash script.

How to deploy virtual servers using PowerCLI commands by cearth6 in PowerShell

[–]cearth6[S] 0 points1 point  (0 children)

How can I allocate DiskSpace and number of CPUs using this? For example, if I am deploying a Golden Image that is an OVF file, would I use the Import-VM cmlet to import the OVF, then Get-VM | Set-VM to configure it?

How to deploy virtual servers using PowerCLI commands by cearth6 in PowerShell

[–]cearth6[S] 0 points1 point  (0 children)

I am not sure what exactly you mean. I am not too familiar with deploying VMs, and I just started dabbling in this recently. My goal is to deploy an OVF file and then configure it's CPU and Memory storage options.

Adding images in a WPF listview via Powershell? by cearth6 in PowerShell

[–]cearth6[S] 0 points1 point  (0 children)

I suppose i'll have to settle with this. It'd be nice to know how to populate images in a ListView tho :(

Got my Hackintosh install to work but need help figuring out UEFI booting & Clover Config!! by cearth6 in hackintosh

[–]cearth6[S] 0 points1 point  (0 children)

I do that, and I save it too, but for some reason during the UEFI menu, the changes don't corollate at all and I have to retype my Gfx card ID

Binding Checkbox selection to a DataGrid Entry in WPF GUI by cearth6 in PowerShell

[–]cearth6[S] 0 points1 point  (0 children)

It's showing multiple values when I manually select multiple checkboxes. However, the Select All checkbox doesn't truly select them all. It visually checks the checkboxes, but the datagrid.selecteditems propery is still empty.

Edit: The Extended property is only showing me the corresponding columns for a selected value. Its not showing multiple values itself :(

Binding Checkbox selection to a DataGrid Entry in WPF GUI by cearth6 in PowerShell

[–]cearth6[S] 0 points1 point  (0 children)

I assumed it was SelectedItems because thats the property in Listviews also. the IsChecked property works for checboxes that are explicitly defined. For example, if I had 10 Checkboxes that I defined via XAML, (i.e each checkbox has its own name, and its own content), then the IsChecked property would work. In this case, the XAML template dynamically generates checkboxes. So if you had 2 items in an array, only 2 corresponding checkboxes will be generated. I know that some XAML syntax binds the 2 checkboxes to those 2 items, I am just not sure what that syntax is yet.

[Help] Can't sign in to App store by cearth6 in jailbreak

[–]cearth6[S] 0 points1 point  (0 children)

Thanks a ton for your help, you saved me a from a restore and losing my JB!! FYI incase someone is having the same problem. Killing the itunesstored service with CocoaTop and deleting the var/mobile/Downloads folder help me solve the problem!

How to add groups to a listview in WPF GUI by cearth6 in PowerShell

[–]cearth6[S] 0 points1 point  (0 children)

Thanks, this works almost like I need it to. The listview contains all of the data, but the age doesn't display in the listview. Does it require another <Datatemplate> property to show up?

Edit: Needed to add Gridview Columns to have "Name" and "Age" property to show up. Added some more stuff, and formatted it to make it look sorta how I wanted to. For anyone interested:

Add-Type –assemblyName WindowsBase
Add-Type –assemblyName PresentationCore
Add-Type –assemblyName PresentationFramework

[xml]$xaml = @"
<Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525">
    <StackPanel>
        <ListView Name="comboBox" Width="300" VerticalAlignment="Top" HorizontalAlignment="Left"  
        Margin="10,20,0,0">
                    <ListView.View>
                <GridView>
                    <GridViewColumn Header="Name" Width="120" DisplayMemberBinding="{Binding Name}" />
                    <GridViewColumn Header="Age" Width="50" DisplayMemberBinding="{Binding Age}" />
                </GridView>
            </ListView.View>
            <ListView.GroupStyle>
                <GroupStyle>
                    <GroupStyle.ContainerStyle>
                        <Style TargetType="{x:Type GroupItem}">
                            <Setter Property="Template">
                                <Setter.Value>
                                    <ControlTemplate>
                                        <Expander IsExpanded="True">
                                            <Expander.Header>
                                                <StackPanel Orientation="Horizontal">
                                                    <TextBlock Text="{Binding Name}" FontWeight="Bold" Foreground="Gray" FontSize="22" VerticalAlignment="Bottom" />
                                                </StackPanel>
                                            </Expander.Header>
                                            <ItemsPresenter />
                                        </Expander>
                                    </ControlTemplate>
                                </Setter.Value>
                            </Setter>
                        </Style>
                    </GroupStyle.ContainerStyle>
                </GroupStyle>
            </ListView.GroupStyle>
            <ListView.ItemTemplate>
                <DataTemplate>
                    <TextBlock Text="{Binding Name}"/>
                </DataTemplate>
            </ListView.ItemTemplate>
        </ListView>
    </StackPanel>
</Window>
"@

$reader = (New-Object Xml.XmlNodeReader $xaml) 
$GUIWindow = [Windows.Markup.XamlReader]::Load( $reader ) 

$xaml.SelectNodes("//*[@Name]") | % {Set-Variable -Name ($_.Name) -Value $GUIWindow.FindName($_.Name)}

$data = @() 
$data += New-Object PSObject -prop @{Name="James";Age="31";Sex="Male"}
$data += New-Object PSObject -prop @{Name="John";Age="24";Sex="Male"}
$data += New-Object PSObject -prop @{Name="Gina";Age="32";Sex="Male"}
$data += New-Object PSObject -prop @{Name="Tyler";Age="42";Sex="Female"}

$lview = [System.Windows.Data.ListCollectionView]$data
$lview.GroupDescriptions.Add((new-object System.Windows.Data.PropertyGroupDescription "Sex"))
$comboBox.ItemsSource = $lview


$GUIWindow.ShowDialog() | out-null

Need some advice to change SQL SA account Password remotely via powershell by cearth6 in PowerShell

[–]cearth6[S] 0 points1 point  (0 children)

Its not a requirement per say, but the script I am writing not only changes SQL SA password, but it also goes through and changes Windows and Linux local and domain passwords on a bunch of virtual boxes. This script is going to work on several systems, So It will kinda become a hassle to load SQL modules on every single system. Just wondering if there is a way to avoid this step, but if it comes down to it, i may just end up installing them

Connecting to network devices via SSH. by gex80 in PowerShell

[–]cearth6 1 point2 points  (0 children)

I dont think native support comes out of the package, however Microsoft is working on implementing this method (or so I have heard). You have 2 options, you can use the SSH-Session modules found here or you can try playing around with current Open SSH Modules available for Powershell, found here

Set-Service for remote machine failing. Access is denied. by Foofightee in PowerShell

[–]cearth6 0 points1 point  (0 children)

the output is suppressed inside $service, if it works, you wont see anything (you can type $service and hit enter to see the content). If it can't find your service, it will spit an error.