ScriptMakeR
Клуб переводчиков
		- Сообщения
 - 1,707
 
- Реакции
 - 514
 
Смотрите видео ниже, чтобы узнать, как установить наш сайт в качестве веб-приложения на домашнем экране.
Примечание: Эта возможность может быть недоступна в некоторых браузерах.
Лично я не знаю. Если знаете, то ткните, пожалуйста, носом в нужном направлении.Почему же так ?

Кому то проще самому, но автотвик не помешает, думаю. Тем более если грамотно сделать (как DragokasТогда, наверное, проще именно этот reg-файл и подсунуть.
 как бы намекаю).Регистрация:24 окт 2014Блин, я не успеваю вопросы писать до их ответов
Да из них, наверное, половина только в обучении, а остальное в зоне свободного общения.Регистрация:24 окт 2014
Сообщения: 529
А так сразу и не скажешь..
Ну, если у вас не Пентиум аж 3, то точне не в бА 2046 это в чем указано, Кб, Мб, или просто б?

А почему же не 2048?
А всетаки? Ну, извините, нет у меня сейчас доступа к компу, с телефона с Вами общаюсь.Ну, если у вас не Пентиум аж 3, то точне не в б![]()
)
'If OS is Vista or Higher set the IgnorePagefileSize value as per KB949052
    If Left(g_strOSVersion,1) => 6 Then
        strKeyPath = "System\CurrentControlSet\Control\CrashControl"
        strValueName = "IgnorePagefileSize"
         oReg.SetDWORDValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,1
    End If[/php]
[php]'*****************************************************************
'  Calculates the estimated requirement for the selected dump types
'*****************************************************************
Function GetEstimatedDumpMB(intDumpType)
      
        Select Case intDumpType
            Case "1"               'Complete Dump Selected
                                '32bit and 64bit actually return the same values for complete (visible mem + 1MB)
                If g_strOSArch = "32-bit" Then
                                      
                    GetEstimatedDumpMB = g_IntMemVisible + DUMP_HEADER_32BIT 'Return Visible MEM +1MB for dump header
                  
                ElseIf g_strOSArch = "64-bit" Then
                  
                    GetEstimatedDumpMB = g_IntMemVisible + DUMP_HEADER_64BIT 'Return Visible MEM +64 bit dump header size
              
                End If
              
            Case "2"            'Kernel Dump Selected
                If g_strOSArch = "32-bit" Then
                  
                    If g_has3gb Then
                  
                        GetEstimatedDumpMB = 1024 + DUMP_HEADER_32BIT  ' with 3gb max kernel memory is 1GB
                      
                    Else
                  
                        'Maximum amount of kernel VA on x86 is 2GB
                        If g_intMemVisible < 2048 Then
              
                            GetEstimatedDumpMB = g_intMemVisible + DUMP_HEADER_32BIT    'less than 2gb ram just use size of complete dump
                          
                        Else  
                                      
                            GetEstimatedDumpMB = 2048 + DUMP_HEADER_32BIT 'Return 2GB (rounded up) potential 32-bit kernel VA +1MB for dump header
                                  
                        End If
                      
                    End If
                  
                ElseIf g_strOSArch = "64-bit" Then
                  
                    'Return 33% of visible memory value as ESTIMATED Kernel dump size as per
                    'http://msdn.microsoft.com/en-us/library/cc266504.aspx
                    GetEstimatedDumpMB = Cint(g_intMemVisible/3) + DUMP_HEADER_64BIT
                  
                   
                End If
        End Select
      
End Function
	'If OS is Vista or Higher set the IgnorePagefileSize value as per KB949052
   IfLeft(g_strOSVersion,1)=>6Then
        strKeyPath ="System\CurrentControlSet\Control\CrashControl"
        strValueName ="IgnorePagefileSize"
         oReg.SetDWORDValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,1
   EndIf